]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
Function SUIT_ResourceMgr::raiseTranslator() invoked for currently active module.
authorstv <stv@opencascade.com>
Thu, 5 Oct 2006 07:19:32 +0000 (07:19 +0000)
committerstv <stv@opencascade.com>
Thu, 5 Oct 2006 07:19:32 +0000 (07:19 +0000)
src/LightApp/LightApp_Application.cxx

index b00782443393d6aae602291e3ba97ab6bc1de030..35d88ac19f4fdeae006f1440d543a2dee3518ebc 100644 (file)
@@ -380,6 +380,9 @@ bool LightApp_Application::activateModule( const QString& modName )
   updateWindows();
   updateViewManagers();
 
+  if ( resourceMgr() )
+    resourceMgr()->raiseTranslators( activeModule() ? activeModule()->moduleName() : "LightApp" );
+
   return true;
 }
 
@@ -2298,6 +2301,10 @@ bool LightApp_Application::activateModule( CAM_Module* mod )
   bool res = CAM_Application::activateModule( mod );
   if ( objectBrowser() )
     objectBrowser()->updateTree();
+
+  if ( resourceMgr() )
+    resourceMgr()->raiseTranslators( activeModule() ? activeModule()->moduleName() : "LightApp" );
+
   return res;
 }