From: jfa Date: Wed, 21 Sep 2005 07:53:48 +0000 (+0000) Subject: Ensure that just opened study has Saved status X-Git-Tag: V3_1_0a1~10 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=1a9f89b9502e220a5ca69befb5e5d79391c49079;p=modules%2Fgui.git Ensure that just opened study has Saved status --- diff --git a/src/SalomeApp/SalomeApp_Study.cxx b/src/SalomeApp/SalomeApp_Study.cxx index e1065c9fe..000b3b0e6 100644 --- a/src/SalomeApp/SalomeApp_Study.cxx +++ b/src/SalomeApp/SalomeApp_Study.cxx @@ -99,8 +99,9 @@ bool SalomeApp_Study::openDocument( const QString& theFileName ) ((SalomeApp_Application*)application())->updateObjectBrowser( false ); bool res = CAM_Study::openDocument( theFileName ); + emit opened( this ); - + study->IsSaved(true); return res; }