]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
0021761: [CEA 606] no effect for disableSplashScreen=true
authorvsr <vsr@opencascade.com>
Tue, 7 Aug 2012 11:53:59 +0000 (11:53 +0000)
committervsr <vsr@opencascade.com>
Tue, 7 Aug 2012 11:53:59 +0000 (11:53 +0000)
Write a comment to the user preference file that any changes made in this file can be lost

src/Qtx/QtxResourceMgr.cxx

index cd70c48588125adf5bda45be19a666e5de8973db..946374411e5de873e013bf6ff03337f659ada798 100644 (file)
@@ -645,6 +645,10 @@ bool QtxResourceMgr::IniFormat::save( const QString& fname, const QMap<QString,
 
   QTextStream ts( &file );
 
+  ts << "# This file is automatically created by SALOME application." << endl;
+  ts << "# Changes made in this file can be lost!" << endl;
+  ts << endl;
+
   bool res = true;
   for ( QMap<QString, Section>::ConstIterator it = secMap.begin(); it != secMap.end() && res; ++it )
   {
@@ -890,6 +894,8 @@ bool QtxResourceMgr::XmlFormat::save( const QString& fname, const QMap<QString,
     return false;
 
   QDomDocument doc( docTag() );
+  QDomComment comment = doc.createComment( "\nThis file is automatically created by SALOME application.\nChanges made in this file can be lost!\n" );
+  doc.appendChild( comment );
   QDomElement root = doc.createElement( docTag() );
   doc.appendChild( root );