]> Creatis software - creaMaracasVisu.git/commitdiff
#3047 creaMaracasVisu Bug New Normal - Fedora 24 gcc 6 conflict with std::ofstream...
authorEduardo DAVILA <eduardo.davila@creatis.insa-lyon.fr>
Thu, 22 Dec 2016 11:04:11 +0000 (12:04 +0100)
committerEduardo DAVILA <eduardo.davila@creatis.insa-lyon.fr>
Thu, 22 Dec 2016 11:04:11 +0000 (12:04 +0100)
lib/maracasVisuLib/src/kernel/marParameters.cpp

index 1b582f7aed0d14d9e456fb31ba24307be1c8c9f5..b201515ddea4f6c5f988fa77c01057016077d368 100644 (file)
@@ -328,8 +328,10 @@ bool marParameters::save( wxString& nw )
        
 //EEDxx2.4 DEBuG
 //     wxLogDebug("Saving parameters to file " + nw);
-       
-    if( os==NULL ) 
+
+//EED2016-12-22        
+//    if( os==NULL ) 
+    if( os.is_open()==false ) 
        {
                wxString errorMsg;
                errorMsg= _T("Error : Cannot open file ")+nw+_T(" to save parameters");
@@ -360,7 +362,10 @@ bool marParameters::load( wxString& nr )
        
 //EEDxx2.4 DEBuG
 //     wxLogDebug("Laoding parameters from file " + nr);
-    if( is==NULL ) 
+
+//EED 2016-12-22
+//    if( is==NULL ) 
+    if( is.is_open()==false ) 
        {
                wxString errorMsg;
                errorMsg= _T("Error : Cannot open file ")+nr+_T(" to load parameters");