]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
*** empty log message ***
authorstv <stv@opencascade.com>
Wed, 26 Mar 2008 11:02:16 +0000 (11:02 +0000)
committerstv <stv@opencascade.com>
Wed, 26 Mar 2008 11:02:16 +0000 (11:02 +0000)
src/LightApp/LightApp_Application.cxx
src/Qtx/QtxMRUAction.cxx

index 3bddb7862714ed1c2dfe49a2b7f5f113793e5019..edf7a391bba30f87c5f5ed713501ced35f51a54b 100644 (file)
@@ -1433,8 +1433,12 @@ void LightApp_Application::onStudyOpened( SUIT_Study* theStudy )
 }
 
 /*!Protected SLOT. On study saved.*/
-void LightApp_Application::onStudySaved( SUIT_Study* )
+void LightApp_Application::onStudySaved( SUIT_Study* )
 {
+  QtxMRUAction* mru = ::qobject_cast<QtxMRUAction*>( action( MRUId ) );
+  if ( mru && s )
+      mru->insert( s->studyName() );
+
   emit studySaved();
 }
 
index 0cc2e5c980fb30afb2d2631bed5039e7cfd2e12b..c3767ca5f5604fc7dabdc5c026919c8832cf9556 100755 (executable)
@@ -389,7 +389,7 @@ void QtxMRUAction::updateMenu()
     }
   }
 
-  int i = 0;
+  int i = 1;
   for ( QStringList::const_iterator it = links.begin(); it != links.end(); ++it, i++ )
   {
     QString linkName;