]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
0023360: [CEA 1963] Use salome.sg.updateObjBrowser(True) instead of salome.sg.updateO...
authorvsr <vsr@opencascade.com>
Thu, 6 Oct 2016 07:21:04 +0000 (10:21 +0300)
committervsr <vsr@opencascade.com>
Thu, 6 Oct 2016 07:21:04 +0000 (10:21 +0300)
- Prepare for migration to swig 3: pass explicitly True as boolean parameter for updateObjBrowser() function.

src/KERNEL_PY/salome_test.py
src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx

index 7a94577602749fbae5c4d23a4ea619facc1fded7..c70a0f5b357c13f84ed945b5c9c7a059c33bc1e7 100755 (executable)
@@ -163,7 +163,7 @@ print "OK"
 
 # ---- update object browser
 if salome.hasDesktop():
-    salome.sg.updateObjBrowser(1);
+    salome.sg.updateObjBrowser(True);
 
 print
 
@@ -303,7 +303,7 @@ print "OK"
 
 # ---- update object browser
 if salome.hasDesktop():
-    salome.sg.updateObjBrowser(1);
+    salome.sg.updateObjBrowser(True);
 
 print
 
@@ -455,4 +455,4 @@ else: # not in gui mode, Paravis can not be tested
 
 # ---- update object browser
 if salome.hasDesktop():
-    salome.sg.updateObjBrowser(1);
+    salome.sg.updateObjBrowser(True);
index d9dd02393ff83c7cd6bc284896e9295d4342b174..5947c40304bdf72318f3b7771f2b406b864881bf 100644 (file)
@@ -1416,7 +1416,7 @@ bool SALOMEDSImpl_Study::DumpStudy(const std::string& thePath,
 
   sfp << std::endl;
   sfp << "if salome.sg.hasDesktop():" << std::endl;
-  sfp << "\tsalome.sg.updateObjBrowser(1)" << std::endl;
+  sfp << "\tsalome.sg.updateObjBrowser(True)" << std::endl;
 
   if(isDumpVisuals) { //Output the call to Session's method restoreVisualState
     sfp << "\tiparameters.getSession().restoreVisualState(1)" << std::endl;