]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
Fix bug of the "Show Only/Hide All" operations : do not raise warning message for...
authorvsr <vsr@opencascade.com>
Tue, 13 Jan 2009 13:07:14 +0000 (13:07 +0000)
committervsr <vsr@opencascade.com>
Tue, 13 Jan 2009 13:07:14 +0000 (13:07 +0000)
src/LightApp/LightApp_Application.cxx
src/LightApp/LightApp_Application.h
src/LightApp/LightApp_Displayer.cxx

index 7ff494c598141780406feea921b833ab18dc35b7..ab6a0782a0b5408089ce952272d4c1859647f1d6 100644 (file)
@@ -364,9 +364,9 @@ QString LightApp_Application::applicationVersion() const
 }
 
 /*!Load module by \a name.*/
-CAM_Module* LightApp_Application::loadModule( const QString& name )
+CAM_Module* LightApp_Application::loadModule( const QString& name, const bool showMsg )
 {
-  CAM_Module* mod = CAM_Application::loadModule( name );
+  CAM_Module* mod = CAM_Application::loadModule( name, showMsg );
   if ( mod )
   {
     connect( this, SIGNAL( studyOpened() ), mod, SLOT( onModelOpened() ) );
index e024029d22006d107c9477e52650cc9cb98f1378..fb62aa68c57f422be38ad73d7616631a8c444f61 100644 (file)
@@ -110,7 +110,7 @@ public:
   virtual QString                     applicationName() const;
   virtual QString                     applicationVersion() const;
 
-  virtual CAM_Module*                 loadModule( const QString& );
+  virtual CAM_Module*                 loadModule( const QString&, const bool = true );
   virtual bool                        activateModule( const QString& );
 
   virtual bool                        useStudy( const QString& );
index 0ef0d099fe449573fcf3640fb0178223a5df7b48..989500847f2f987c1fa2b4e29fdbfa950fb18629 100644 (file)
@@ -259,7 +259,7 @@ LightApp_Displayer* LightApp_Displayer::FindDisplayer( const QString& mod_name,
   LightApp_Module* m = dynamic_cast<LightApp_Module*>( app ? app->module( mod_name ) : 0 );
   if( !m && load )
   {
-    m = dynamic_cast<LightApp_Module*>( app->loadModule( mod_name ) );
+    m = dynamic_cast<LightApp_Module*>( app->loadModule( mod_name, false ) );
     if( m )
       app->addModule( m );
   }