From: rnv Date: Mon, 16 May 2011 14:06:17 +0000 (+0000) Subject: Fix for the bug "IPAL22452 TC6.3.0: Save button is not activated after renaming GUI... X-Git-Tag: V6_3_0~1 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=3287fb2053111d1a808aa28d1b1049555bb7be5f;p=modules%2Fgui.git Fix for the bug "IPAL22452 TC6.3.0: Save button is not activated after renaming GUI state". --- diff --git a/src/SalomeApp/SalomeApp_Application.cxx b/src/SalomeApp/SalomeApp_Application.cxx index 4f9c611ae..be0d219fe 100644 --- a/src/SalomeApp/SalomeApp_Application.cxx +++ b/src/SalomeApp/SalomeApp_Application.cxx @@ -1840,6 +1840,9 @@ bool SalomeApp_Application::renameObject( const QString& entry, const QString& n if ( !name.isNull() && !name.isEmpty() ) { aStudy->setNameOfSavePoint( savePoint, name ); updateSavePointDataObjects( aStudy ); + + //Mark study as modified + aStudy->Modified(); return true; } return false;