From 0b0bb0580ebbe9e045742e50c9efac1b99249456 Mon Sep 17 00:00:00 2001 From: asl Date: Thu, 24 Nov 2005 08:56:42 +0000 Subject: [PATCH] PAL9883 - default value of "ascii_file" parameter must be false --- src/SalomeApp/SalomeApp_Study.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SalomeApp/SalomeApp_Study.cxx b/src/SalomeApp/SalomeApp_Study.cxx index d9a25aef6..c071cac57 100644 --- a/src/SalomeApp/SalomeApp_Study.cxx +++ b/src/SalomeApp/SalomeApp_Study.cxx @@ -177,7 +177,7 @@ bool SalomeApp_Study::saveDocumentAs( const QString& theFileName ) return false; bool isMultiFile = resMgr->booleanValue( "Study", "multi_file", false ), - isAscii = resMgr->booleanValue( "Study", "ascii_file", true ); + isAscii = resMgr->booleanValue( "Study", "ascii_file", false ); isAscii ? SalomeApp_Application::studyMgr()->SaveAsASCII( theFileName.latin1(), studyDS(), isMultiFile ) : SalomeApp_Application::studyMgr()->SaveAs ( theFileName.latin1(), studyDS(), isMultiFile ); @@ -212,7 +212,7 @@ bool SalomeApp_Study::saveDocument() return false; bool isMultiFile = resMgr->booleanValue( "Study", "multi_file", false ), - isAscii = resMgr->booleanValue( "Study", "ascii_file", true ); + isAscii = resMgr->booleanValue( "Study", "ascii_file", false ); isAscii ? SalomeApp_Application::studyMgr()->SaveASCII( studyDS(), isMultiFile ) : SalomeApp_Application::studyMgr()->Save ( studyDS(), isMultiFile ); -- 2.39.2