Salome HOME
Removing difference with Linux V5_1_main
authordmv <dmv@opencascade.com>
Mon, 13 Sep 2010 14:19:11 +0000 (14:19 +0000)
committerdmv <dmv@opencascade.com>
Mon, 13 Sep 2010 14:19:11 +0000 (14:19 +0000)
src/SMESH_I/SMESH_Gen_i.cxx

index 197af25adf0f7c86043eb18ac969165b4e7846bf..6c1bfa193ba3dc6348b5acb1d5a370daef93c0f8 100644 (file)
@@ -3190,10 +3190,7 @@ SALOMEDS::TMPFile* SMESH_Gen_i::SaveASCII( SALOMEDS::SComponent_ptr theComponent
                                            bool                     isMultiFile ) {
   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::SaveASCII" );
   SALOMEDS::TMPFile_var aStreamFile = Save( theComponent, theURL, isMultiFile );
-
-  #ifndef WIN32
-  return aStreamFile._retn();
-  #endif
+  //return aStreamFile._retn();
 
   //after usual saving needs to encipher binary to text string
   //Any binary symbol will be represent as "|xx" () hexadecimal format number
@@ -4281,10 +4278,7 @@ bool SMESH_Gen_i::LoadASCII( SALOMEDS::SComponent_ptr theComponent,
                              const char*              theURL,
                              bool                     isMultiFile ) {
   if(MYDEBUG) MESSAGE( "SMESH_Gen_i::LoadASCII" );
-
-  #ifndef WIN32
-  return Load( theComponent, theStream, theURL, isMultiFile );
-  #endif
+  //return Load( theComponent, theStream, theURL, isMultiFile );
 
   //before call main ::Load method it's need for decipher text format to
   //binary ( "|xx" => x' )