From: jfa Date: Tue, 5 Feb 2008 12:41:41 +0000 (+0000) Subject: NPAL18849: pb with SUPERV in BR_Dev_For_4_0. Fourth parameter to FNode changed from... X-Git-Tag: V4_1_1~2 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=3e4ec4b717149f05b06a98580e5160f296dd6426;p=modules%2Fsuperv.git NPAL18849: pb with SUPERV in BR_Dev_For_4_0. Fourth parameter to FNode changed from boolean to enumeration. --- diff --git a/src/Supervision/SuperV.py b/src/Supervision/SuperV.py index 4eb0230..5a7aed0 100644 --- a/src/Supervision/SuperV.py +++ b/src/Supervision/SuperV.py @@ -833,7 +833,7 @@ class Graph(GNode): aService = NodeComponent.GetService( anInterface , aService ) #if SuperVision.Swig : #aService = Service_Swig( aService ) - aNode = self.G.FNode( aComponent , anInterface , aService, 1 ) + aNode = self.G.FNode( aComponent , anInterface , aService, SALOME_ModuleCatalog.SO ) if aNode != None : aNode.isCimpl = 1 myNode = FNode( aNode , self.G.Verbose ) diff --git a/src/Supervision/batchmode_SuperV.py b/src/Supervision/batchmode_SuperV.py index 6720b7d..ffa73f6 100644 --- a/src/Supervision/batchmode_SuperV.py +++ b/src/Supervision/batchmode_SuperV.py @@ -850,7 +850,7 @@ class Graph(GNode): aService = NodeComponent.GetService( anInterface , aService ) #if SuperVision.Swig : #aService = Service_Swig( aService ) - aNode = self.G.FNode( aComponent , anInterface , aService, 1 ) + aNode = self.G.FNode( aComponent , anInterface , aService, SALOME_ModuleCatalog.SO ) if aNode != None : aNode.isCimpl = 1 myNode = FNode( aNode , self.G.Verbose )