X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FStdMeshers_I%2FStdMeshers_StartEndLength_i.cxx;h=aa38fc2ad01767d2b13a60c1aecbdedf90c69f6f;hp=1748ef6fbba6f464d94f6ba1e0bd6587bf989c1d;hb=f816f204d33b5250ee211247a798a1af42c528ea;hpb=a17b36970bc61da1d664453c615754997c925b18 diff --git a/src/StdMeshers_I/StdMeshers_StartEndLength_i.cxx b/src/StdMeshers_I/StdMeshers_StartEndLength_i.cxx index 1748ef6fb..aa38fc2ad 100644 --- a/src/StdMeshers_I/StdMeshers_StartEndLength_i.cxx +++ b/src/StdMeshers_I/StdMeshers_StartEndLength_i.cxx @@ -20,7 +20,7 @@ // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // -// SMESH SMESH_I : idl implementation based on 'SMESH' unit's calsses +// SMESH SMESH_I : idl implementation based on 'SMESH' unit's classes // File : StdMeshers_StartEndLength_i.cxx // Moved here from SMESH_LocalLength_i.cxx // Author : Paul RASCLE, EDF @@ -47,15 +47,12 @@ using namespace std; //============================================================================= StdMeshers_StartEndLength_i::StdMeshers_StartEndLength_i( PortableServer::POA_ptr thePOA, - int theStudyId, - ::SMESH_Gen* theGenImpl ) + ::SMESH_Gen* theGenImpl ) : SALOME::GenericObj_i( thePOA ), SMESH_Hypothesis_i( thePOA ) { - MESSAGE( "StdMeshers_StartEndLength_i::StdMeshers_StartEndLength_i" ); myBaseImpl = new ::StdMeshers_StartEndLength( theGenImpl->GetANewId(), - theStudyId, - theGenImpl ); + theGenImpl ); } //============================================================================= @@ -68,7 +65,6 @@ StdMeshers_StartEndLength_i::StdMeshers_StartEndLength_i( PortableServer::POA_pt StdMeshers_StartEndLength_i::~StdMeshers_StartEndLength_i() { - MESSAGE( "StdMeshers_StartEndLength_i::~StdMeshers_StartEndLength_i" ); } //============================================================================= @@ -83,7 +79,6 @@ void StdMeshers_StartEndLength_i::SetLength(CORBA::Double theLength, CORBA::Boolean theIsStart ) throw ( SALOME::SALOME_Exception ) { - MESSAGE( "StdMeshers_StartEndLength_i::SetLength" ); ASSERT( myBaseImpl ); try { this->GetImpl()->SetLength( theLength, theIsStart ); @@ -133,7 +128,6 @@ void StdMeshers_StartEndLength_i::SetEndLength( CORBA::Double length) CORBA::Double StdMeshers_StartEndLength_i::GetLength( CORBA::Boolean theIsStart) { - MESSAGE( "StdMeshers_StartEndLength_i::GetLength" ); ASSERT( myBaseImpl ); return this->GetImpl()->GetLength( theIsStart ); } @@ -239,7 +233,6 @@ SMESH::long_array* StdMeshers_StartEndLength_i::GetReversedEdges() ::StdMeshers_StartEndLength* StdMeshers_StartEndLength_i::GetImpl() { - MESSAGE( "StdMeshers_StartEndLength_i::GetImpl" ); return ( ::StdMeshers_StartEndLength* )myBaseImpl; }