From: eap Date: Fri, 15 Oct 2010 06:35:11 +0000 (+0000) Subject: 0020749: EDF 1291 SMESH : Create 2D Mesh from 3D improvement X-Git-Tag: V5_1_5rc1~22 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=194b484098e22f7101fe4aad4c9482a4756b9e3e;p=modules%2Fsmesh.git 0020749: EDF 1291 SMESH : Create 2D Mesh from 3D improvement fix calling MakeBoundaryMesh() --- diff --git a/src/SMESHGUI/SMESHGUI_Make2DFrom3DOp.cxx b/src/SMESHGUI/SMESHGUI_Make2DFrom3DOp.cxx index 579345f57..364107306 100644 --- a/src/SMESHGUI/SMESHGUI_Make2DFrom3DOp.cxx +++ b/src/SMESHGUI/SMESHGUI_Make2DFrom3DOp.cxx @@ -236,9 +236,9 @@ void SMESHGUI_Make2DFrom3DOp::selectionDone() LightApp_Dialog::TypesList types; selected( names, types, ids ); if ( names.count() == 1 ) - myDlg->selectObject( names, types, ids ); + myDlg->selectObject( names, types, ids ); else - myDlg->clearSelection(); + myDlg->clearSelection(); } catch ( const SALOME::SALOME_Exception& S_ex ) { SalomeApp_Tools::QtCatchCorbaException( S_ex ); @@ -331,32 +331,32 @@ bool SMESHGUI_Make2DFrom3DOp::compute2DMesh() if ( CORBA::is_nil( srcMesh ) ) { SMESH::SMESH_subMesh_var subMesh = SMESH::SMESH_subMesh::_narrow( obj ); if ( !CORBA::is_nil( subMesh ) ) - srcMesh = subMesh->GetFather(); + srcMesh = subMesh->GetFather(); } if ( CORBA::is_nil( srcMesh ) ) { SMESH::SMESH_GroupBase_var grp = SMESH::SMESH_GroupBase::_narrow( obj ); if ( !CORBA::is_nil( grp ) ) - srcMesh = grp->GetMesh(); + srcMesh = grp->GetMesh(); } if ( !CORBA::is_nil( srcMesh ) ) { SMESH::SMESH_MeshEditor_var aMeshEditor = srcMesh->GetMeshEditor(); SMESH::SMESH_Group_var newGrp; SMESH::SMESH_Mesh_var mesh = aMeshEditor->MakeBoundaryMesh( obj.in(), - mode, - meshName.toLatin1().constData(), - groupName.toLatin1().constData(), - copySrc, - copyAll, - newGrp.out() ); + mode, + groupName.toLatin1().constData(), + meshName.toLatin1().constData(), + copySrc, + copyAll, + newGrp.out() ); if ( !mesh->_is_nil() ) { #ifdef WITHGENERICOBJ - mesh->Destroy(); + mesh->Destroy(); #endif } if ( !newGrp->_is_nil() ) { #ifdef WITHGENERICOBJ - newGrp->Destroy(); + newGrp->Destroy(); #endif } ok = true;