]> SALOME platform Git repositories - modules/superv.git/commitdiff
Salome HOME
NPAL16955: syntax storage in a python supervisiongraph. Correct \\ case.
authorjfa <jfa@opencascade.com>
Fri, 12 Oct 2007 08:05:12 +0000 (08:05 +0000)
committerjfa <jfa@opencascade.com>
Fri, 12 Oct 2007 08:05:12 +0000 (08:05 +0000)
src/GraphBase/DataFlowBase_ComputingNode.cxx

index b97d441b9437bff8fd6d8c003044548b6c4256ac..0328a381e8ab7fdee0f849b482afbe2120a84ae9 100644 (file)
@@ -48,7 +48,7 @@ static string protectQuotes (const string theText)
     // screen symbol after back slash (except single quote, which will be processed below)
     if (pos + 1 < aRes.size() && aRes[pos + 1] != '\'') {
       aRes.insert(pos + 1, "\\");
-      pos++;
+      pos += 2;
     }
   }
 
@@ -88,7 +88,7 @@ static void InitFields( //SUPERV::KindOfNode &_Kind ,
   _FirstCreation.Hour   = _LastModification.Hour   = Tm->tm_hour;
   _FirstCreation.Day    = _LastModification.Day    = Tm->tm_mday;
   _FirstCreation.Month  = _LastModification.Month  = Tm->tm_mon + 1;
-  _FirstCreation.Year   = _LastModification.Year   = Tm->tm_year + 1900; 
+  _FirstCreation.Year   = _LastModification.Year   = Tm->tm_year + 1900;
 
   _EditorRelease = new char[ strlen( SuperVision_Version ) + 1 ] ;
   strcpy( _EditorRelease , SuperVision_Version ) ;
@@ -184,7 +184,7 @@ GraphBase::ComputingNode::ComputingNode( CORBA::ORB_ptr ORB ,
 //    cout << "GraphBase::ComputingNode::ComputingNode NO SetDebug" << endl ;
 //  }
   DefPortsOfNode( ORB , SALOME_ModuleCatalog::Service() , NamePtr() , Kind() , Graph_prof_debug , Graph_fdebug ) ;
-  cdebug << "GraphBase::ComputingNode::ComputingNode "  << this 
+  cdebug << "GraphBase::ComputingNode::ComputingNode "  << this
          << " Name '" << Name() << "' "  << _FirstCreation
          << " "  << _LastModification << endl ;
 }
@@ -225,7 +225,7 @@ GraphBase::ComputingNode::ComputingNode( CORBA::ORB_ptr ORB ,
   _FirstCreation.Hour   = _LastModification.Hour   = Tm->tm_hour;
   _FirstCreation.Day    = _LastModification.Day    = Tm->tm_mday;
   _FirstCreation.Month  = _LastModification.Month  = Tm->tm_mon + 1;
-  _FirstCreation.Year   = _LastModification.Year   = Tm->tm_year + 1900; 
+  _FirstCreation.Year   = _LastModification.Year   = Tm->tm_year + 1900;
 
   if ( NodeEditorRelease != NULLSTRING ) {
     _EditorRelease = new char[ strlen( NodeEditorRelease ) + 1 ] ;
@@ -280,7 +280,7 @@ GraphBase::ComputingNode::ComputingNode( CORBA::ORB_ptr ORB ,
   
 
   DefPortsOfNode( ORB , aService , NamePtr() , Kind() , Graph_prof_debug , Graph_fdebug ) ;
-  cdebug << "GraphBase::ComputingNode::ComputingNode "  << this 
+  cdebug << "GraphBase::ComputingNode::ComputingNode "  << this
          << " Name '" << Name()
          << "' KindOfNode " << Kind()
          << " ServiceName '" << ServiceName() << "' In(" << ServiceInParameter().length()
@@ -290,7 +290,7 @@ GraphBase::ComputingNode::ComputingNode( CORBA::ORB_ptr ORB ,
 }
 
 GraphBase::ComputingNode::~ComputingNode() {
-  cdebug << "GraphBase::ComputingNode::~ComputingNode "  << this 
+  cdebug << "GraphBase::ComputingNode::~ComputingNode "  << this
          << " Name() "<< Name() << " _Comment "
          << (void *) _Comment << " "  << _Comment << " "  << endl ;
 }
@@ -309,7 +309,7 @@ GraphBase::ComputingNode::~ComputingNode() {
 
 SUPERV::SDate GraphBase::ComputingNode::FirstCreation () const {
 //  cdebug << "GraphBase::ComputingNode::FirstCreation "
-//         << " Name '" << Name() << "' "  << _FirstCreation << " "  
+//         << " Name '" << Name() << "' "  << _FirstCreation << " "
 //         << _LastModification << endl ;
   return _FirstCreation;
 }
@@ -384,7 +384,7 @@ void GraphBase::ComputingNode::NodePort( const char * NodeName ,
 bool GraphBase::ComputingNode::IsLinked(const char * ToServiceParameterName, bool isInput ) {
   bool RetVal = false ;
   if ( isInput ) { // mkr : PAL8060
-    // we have to know the type of the port, because of input and output ports 
+    // we have to know the type of the port, because of input and output ports
     // belong to one node may have the same names
     const GraphBase::InPort * thePort = GetInPort( ToServiceParameterName ) ;
     if ( thePort ) {
@@ -973,7 +973,7 @@ bool GraphBase::ComputingNode::CheckEndLoop(GraphBase::LoopNode * aLoopNode ,
                << LinkedFromNodesSize() << " ERROR false" << endl;
     return false ;
   }
-// We have to check that all nodes linked from that node go to the beginning of LoopNode : 
+// We have to check that all nodes linked from that node go to the beginning of LoopNode :
   for ( i = 0 ; i < LinkedFromNodesSize() ; i++ ) {
     GraphBase::ComputingNode * aNode = (GraphBase::ComputingNode * ) LinkedFromNodes( i ) ;
     cdebug << i << ". " << Name() << " Linked from " << aNode->Name() << endl ;
@@ -1442,7 +1442,7 @@ bool GraphBase::ComputingNode::SaveXML( QDomDocument & Graph , QDomElement & inf
       cdebug << "SaveXML NumberOfValues " << ((GraphBase::OutDataStreamPort * ) anOutPort)->NumberOfValues() << endl ;
     }
   }
-//  f << Tabs << "</Parameter-list>" << endl ;    
+//  f << Tabs << "</Parameter-list>" << endl ;
 
 //  f << Tabs << "<PyFunction-list>" << endl ;
   QDomElement PyFunctionlist = Graph.createElement("PyFunction-list") ;
@@ -2077,4 +2077,3 @@ ostream & operator<< (ostream &fOut,const SUPERV::SDate &D) {
 //  cdebug_out << "operator<< GraphEditor::Date" << endl;
   return fOut;
 }
-