]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
Removing emit signal. abn/exec_sig
authorabn <adrien.bruneton@cea.fr>
Mon, 18 Apr 2016 08:43:19 +0000 (10:43 +0200)
committerabn <adrien.bruneton@cea.fr>
Mon, 18 Apr 2016 08:43:19 +0000 (10:43 +0200)
src/SUIT/SUIT_Application.cxx
src/SUIT/SUIT_Application.h
src/Session/SALOME_Session_Server.cxx

index 50f5f8c08cb501a3a655952e4464f3fea82c44c3..912aa54d61053af1d10399e7806919bfe13f1c03 100755 (executable)
@@ -733,5 +733,4 @@ void SUIT_Application::onHelpContextModule( const QString& /*theComponentName*/,
 void SUIT_Application::onMainEventLoopStarting()
 {
   myEventLoopStarted = true;
-  emit mainEventLoopStarting();
 }
index 6400a4907b8f64e70f12ca84549c0670e04add01..2118dd1a4839514e015ae31bc268676e9c70e310 100755 (executable)
@@ -122,7 +122,6 @@ signals:
   void                  activated( SUIT_Application* );
 //  void                  moving();
   void                  infoChanged( QString );
-  void                  mainEventLoopStarting();
 
 public slots:
   virtual void          updateCommandsStatus();
index 91907524317b6eb44d33ce62a02f5d2dfbef068c..6a7512a1f17ac6c171c5d4ea2b5e0162f8697073 100755 (executable)
@@ -579,7 +579,7 @@ int main( int argc, char **argv )
           splash->finish( aGUIApp->desktop() );
 
         // Post an event that will be processed as soon as the main event loop is starting - useful for QtTesting
-        // test scenarios, in the MED module for example.
+        // test scenarios, in the MED module for example, to know whether the main exec loop is running.
         QTimer::singleShot(0, aGUIApp, SLOT(onMainEventLoopStarting()));
         result = _qappl.exec();