0026377: Passing Handle objects as arguments to functions as non-const reference...
[occt.git] / src / DDF / DDF_BasicCommands.cxx
index 561f1ba..f1c9084 100644 (file)
@@ -4,8 +4,8 @@
 //
 // This file is part of Open CASCADE Technology software library.
 //
-// This library is free software; you can redistribute it and / or modify it
-// under the terms of the GNU Lesser General Public version 2.1 as published
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
 // by the Free Software Foundation, with special exception defined in the file
 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
 // distribution for complete text of the license and disclaimer of any warranty.
@@ -220,7 +220,7 @@ static Standard_Integer DDF_SetTagger (Draw_Interpretor& di,
     TDF_TagSource::Set(L); 
     return 0;
   }
-  di << "DDF_SetTagger : Error" << "\n";
+  di << "DDF_SetTagger : Error\n";
   return 1;
 }
 
@@ -243,7 +243,7 @@ static Standard_Integer DDF_NewTag (Draw_Interpretor& di,
     di << A->NewTag ();
     return 0;
   }
-  di << "DDF_NewTag : Error" << "\n";
+  di << "DDF_NewTag : Error\n";
   return 1;
 }
 
@@ -273,7 +273,7 @@ static Standard_Integer DDF_NewChild (Draw_Interpretor& di,
       return 0;
     }
   }
-  di << "DDF_NewChild : Error" << "\n";
+  di << "DDF_NewChild : Error\n";
   return 1;
 }
 
@@ -290,13 +290,13 @@ static Standard_Integer DDF_Label (Draw_Interpretor& di,Standard_Integer n, cons
     TDF_Label L;
     if (!DDF::FindLabel(DF,a[2],L,Standard_False)) { 
       DDF::AddLabel(DF,a[2],L);  
-      //di << "Label : " << a[2] << " created" << "\n";
+      //di << "Label : " << a[2] << " created\n";
     }
-    //else di << "Label : " << a[2] << " retrieved" << "\n";
+    //else di << "Label : " << a[2] << " retrieved\n";
     DDF::ReturnLabel(di,L);
     return 0;
   }
-  di << "DDF_Label : Error" << "\n";
+  di << "DDF_Label : Error\n";
   return 1; 
 }