Salome HOME
Traces
[modules/superv.git] / src / GraphEditor / DataFlowEditor_InNode.hxx
index 3fbbd72332c69b8ae0aa309ea2f858b578486f61..0bb2a91154b929c39c3ca92a52fad09a626e4357 100644 (file)
@@ -180,11 +180,14 @@ namespace GraphEditor {
       SUPERV::SDate LastModification() const {
                     return _ComputingNode->LastModification() ; } ;
       char* Author() const {
-            return my_strdup( _ComputingNode->Author() ) ; }
+//JR 17.02.2005 Memory Leak            return my_strdup( _ComputingNode->Author() ) ; }
+            return _ComputingNode->Author() ; }
       char* EditorRelease() const {
-            return my_strdup( _ComputingNode->EditorRelease() ) ; } ;
+//JR 17.02.2005 Memory Leak            return my_strdup( _ComputingNode->EditorRelease() ) ; } ;
+            return _ComputingNode->EditorRelease() ; } ;
       char * Comment() const {
-             return my_strdup( _ComputingNode->Comment() ) ; } ;
+//JR 17.02.2005 Memory Leak             return my_strdup( _ComputingNode->Comment() ) ; } ;
+             return _ComputingNode->Comment() ; } ;
       bool Author( const char * anAuthor ) {
            return _ComputingNode->Author( anAuthor ) ; } ;
       bool EditorRelease( const char* anEditorRelease ) {