Salome HOME
ImportFromFile()
[modules/hydro.git] / src / HYDROData / HYDROData_Polyline3D.cxx
index 7067348006ac05e783f19761fffc906d62532084..66cec7be744e31c58dbcdd6c26efba08a800c8e8 100644 (file)
@@ -50,6 +50,9 @@
 
 #include <TopTools_SequenceOfShape.hxx>
 
+#define _DEVDEBUG_
+#include "HYDRO_trace.hxx"
+
 #include <QColor>
 #include <QStringList>
 
@@ -85,7 +88,7 @@ QStringList HYDROData_Polyline3D::DumpToPython( const QString& thePyScriptPath,
       QString aProfileName = aProfile->GetObjPyName();
       if ( !aProfileName.isEmpty() )
       {
-        aResList << QString( "%1.SetProfileUZ( %2.GetProfileUZ() );" )
+        aResList << QString( "%1.SetProfileUZ( %2.GetProfileUZ() )" )
                      .arg( aPolylineName ).arg( aProfileName );
       }
     }
@@ -105,7 +108,7 @@ QStringList HYDROData_Polyline3D::DumpToPython( const QString& thePyScriptPath,
           QString aProfileName = aProfile->GetObjPyName();
           if ( !aProfileName.isEmpty() )
           {
-            aResList << QString( "%1.SetChildProfileUZ( %2.GetProfileUZ() );" )
+            aResList << QString( "%1.SetChildProfileUZ( %2.GetProfileUZ() )" )
                          .arg( aPolylineName ).arg( aProfileName );
           }
         }
@@ -116,7 +119,7 @@ QStringList HYDROData_Polyline3D::DumpToPython( const QString& thePyScriptPath,
   }
 
   aResList << QString( "" );
-  aResList << QString( "%1.Update();" ).arg( aPolylineName );
+  aResList << QString( "%1.Update()" ).arg( aPolylineName );
   aResList << QString( "" );
 
   return aResList;