]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
NPAL15983 (EDF PAL 413: Bug when displaying empty groups)
authoreap <eap@opencascade.com>
Mon, 21 May 2007 07:31:57 +0000 (07:31 +0000)
committereap <eap@opencascade.com>
Mon, 21 May 2007 07:31:57 +0000 (07:31 +0000)
-      aDescr += (char *)myStream.str().c_str();
+      std::string aString = myStream.str();
+      aDescr += (char *)aString.c_str();

src/GEOM/GEOM_PythonDump.cxx

index 60940d941fd39ac89fa16d120daaf1fdcc4fbbc5..14c84dc8baca1ab1d98ada7a3b402d7d9a7760db 100644 (file)
@@ -43,19 +43,12 @@ namespace GEOM
       TCollection_AsciiString aDescr;
       if ( myAppend )
         aDescr = myFunction->GetDescription() + "\n\t";
-      aDescr += (char *)myStream.str().c_str();
+      std::string aString = myStream.str();
+      aDescr += (char *)aString.c_str();
       myFunction->SetDescription( aDescr );
     }
   }
 
-//  TPythonDump::operator TCollection_AsciiString () const
-//  {
-//    if (myCounter == 1) {
-//      return TCollection_AsciiString ((char *)myStream.str().c_str());
-//    }
-//    return TCollection_AsciiString ();
-//  }
-
   TPythonDump& TPythonDump::operator<< (long int theArg)
   {
     myStream<<theArg;