]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
Load Python components in FactoryServer instead of FactoryServerPy (fixes bug when... B4KillOfAutomake
authorbarate <barate>
Thu, 11 Jul 2013 12:22:58 +0000 (12:22 +0000)
committerbarate <barate>
Thu, 11 Jul 2013 12:22:58 +0000 (12:22 +0000)
src/SALOME_PYQT/SALOME_PYQT_GUI/SALOME_PYQT_Module.cxx

index e41087cee03618974e09fb06d60ec94b9e340546..b1e1683f0e192df70e99a30ad02fab2313456961 100644 (file)
@@ -107,7 +107,7 @@ SALOME_PYQT_Module::~SALOME_PYQT_Module()
   This function tries to get engine IOR from the Python module using engineIOR() function.
   That function can load module engine using appropriate container if required.
   If this function is not available in Python module, the default implementation
-  is used which loads engine to the default FactoryServerPy container.
+  is used which loads engine to the default FactoryServer container.
 */
 QString SALOME_PYQT_Module::engineIOR() const
 {
@@ -120,11 +120,11 @@ QString SALOME_PYQT_Module::engineIOR() const
   }
   if ( ior.isEmpty() ) {
     // if IOR is still not specified, try default implementation
-    // which loads engine to the default FactoryServerPy container.
+    // which loads engine to the default FactoryServer container.
     Engines::EngineComponent_var comp;
     // temporary solution
     try {
-      comp = getApp()->lcc()->FindOrLoad_Component( "FactoryServerPy", name().toLatin1() );
+      comp = getApp()->lcc()->FindOrLoad_Component( "FactoryServer", name().toLatin1() );
     }
     catch (CORBA::Exception&) {
     }