From: rahuel Date: Tue, 6 Sep 2005 08:30:49 +0000 (+0000) Subject: There was a wrong error message in the .log file X-Git-Tag: V3_1_0a1~22 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;ds=sidebyside;h=ff530b849e2df216a10c4cee53e663eb699126c2;p=modules%2Fsuperv.git There was a wrong error message in the .log file --- diff --git a/src/GraphBase/DataFlowBase_Graph.cxx b/src/GraphBase/DataFlowBase_Graph.cxx index d461fad..a231ec8 100644 --- a/src/GraphBase/DataFlowBase_Graph.cxx +++ b/src/GraphBase/DataFlowBase_Graph.cxx @@ -3159,6 +3159,11 @@ const CORBA::Any GraphBase::Graph::PortInData( const char* ToNodeName , << ToServiceParameterName << " ERROR no InPort" << endl ; } } + else if ( !strcmp( ToNodeName , Name() ) && + !strcmp( ToServiceParameterName , "Gate" ) ) { + cdebug << "GraphBase::Graph::PortInData " << ToNodeName << " " + << ToServiceParameterName << " InGate ignored" << endl ; + } else { cdebug << "GraphBase::Graph::PortInData " << ToNodeName << " " << ToServiceParameterName << " ERROR no Node" << endl ; @@ -3206,6 +3211,11 @@ const CORBA::Any GraphBase::Graph::PortOutData( const char* FromNodeName , << FromServiceParameterName << " ERROR no OutPort" << endl ; } } + else if ( !strcmp( FromNodeName , Name() ) && + !strcmp( FromServiceParameterName , "Gate" ) ) { + cdebug << "GraphBase::Graph::PortOutData " << FromNodeName << " " + << FromServiceParameterName << " OutGate ignored" << endl ; + } else { cdebug << "GraphBase::Graph::PortOutData " << FromNodeName << " " << FromServiceParameterName << " ERROR no Node" << endl ;