From: Pascale Noyret Date: Fri, 7 Aug 2009 09:45:04 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: V1_0OpenTurns~71 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=f7e03d1bba852d2bfaabbf40c4c205912bb0b4f4;p=modules%2Feficas.git *** empty log message *** --- diff --git a/InterfaceQT4/editor.py b/InterfaceQT4/editor.py index 7bca6d9c..d1257147 100644 --- a/InterfaceQT4/editor.py +++ b/InterfaceQT4/editor.py @@ -435,7 +435,7 @@ class JDCEditor(QSplitter): def get_file_variable(self) : #---------------------------# titre = "Choix d'un fichier XML" - texte = "Le fichier contient une commande INCLUDE\n" + texte = "Le fichier contient une commande MODEL\n" texte = texte+'Donnez le nom du fichier XML qui contient la description des variables' QMessageBox.information( self, titre,texte) diff --git a/InterfaceQT4/monUniqueBasePanel.py b/InterfaceQT4/monUniqueBasePanel.py index b61c558d..d7cb28a5 100644 --- a/InterfaceQT4/monUniqueBasePanel.py +++ b/InterfaceQT4/monUniqueBasePanel.py @@ -83,6 +83,8 @@ class MonUniqueBasePanel(DUnBase,QTPanel,SaisieValeur): mc = self.node.item.get_definition() if self.node.item.get_nom() != "FileName" : self.BFichier.close() + else : + self.bParametres.close() type = mc.type[0] #if not('grma' in repr(type)) or not(self.editor.salome) : if not(('grma' in repr(type)) or ('grno' in repr(type))) or not(self.editor.salome) : @@ -118,9 +120,6 @@ class MonUniqueBasePanel(DUnBase,QTPanel,SaisieValeur): def BOk2Pressed(self): SaisieValeur.BOk2Pressed(self) - if self.node.item.parent.nom == "MODEL" : - self.node.item.parent.change_fichier="1" - self.node.item.parent.build_include(None,"") def BFichierPressed(self): fichier = QFileDialog.getOpenFileName(self.appliEficas, @@ -134,8 +133,9 @@ class MonUniqueBasePanel(DUnBase,QTPanel,SaisieValeur): def LEValeurPressed(self): SaisieValeur.LEValeurPressed(self) if self.node.item.parent.nom == "MODEL" : - self.node.item.parent.change_fichier="1" - self.node.item.parent.build_include(None,"") + if self.node.item.isvalid(): + self.node.item.parent.change_fichier="1" + self.node.item.parent.build_include(None,"") def BParametresPressed(self): QTPanel.BParametresPressed(self)