mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-04-05 12:28:26 +05:00
0020571: EDF 1160 SMESH : SMESH_MEDMesh_i::getName() always return toto
This commit is contained in:
parent
44f1a50b52
commit
5fabc58d7e
@ -24,6 +24,7 @@
|
|||||||
// Module : SMESH
|
// Module : SMESH
|
||||||
//
|
//
|
||||||
#include "SMESH_MEDMesh_i.hxx"
|
#include "SMESH_MEDMesh_i.hxx"
|
||||||
|
#include "SMESH_Gen_i.hxx"
|
||||||
#include "SMESH_Mesh_i.hxx"
|
#include "SMESH_Mesh_i.hxx"
|
||||||
|
|
||||||
#include "SMESHDS_Mesh.hxx"
|
#include "SMESHDS_Mesh.hxx"
|
||||||
@ -115,9 +116,14 @@ char *SMESH_MEDMesh_i::getName() throw(SALOME::SALOME_Exception)
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
// A COMPLETER PAR LE NOM DU MAILLAGE
|
SMESH_Gen_i* gen = SMESH_Gen_i::GetSMESHGen();
|
||||||
//return CORBA::string_dup(_mesh_i->getName().c_str());
|
SALOMEDS::Study_var study = gen->GetCurrentStudy();
|
||||||
return CORBA::string_dup("toto");
|
SALOMEDS::SObject_var meshSO = gen->ObjectToSObject( study, _mesh_i->_this());
|
||||||
|
if ( meshSO->_is_nil() )
|
||||||
|
return CORBA::string_dup("toto");
|
||||||
|
|
||||||
|
CORBA::String_var name = meshSO->GetName();
|
||||||
|
return CORBA::string_dup( name.in() );
|
||||||
}
|
}
|
||||||
catch(...)
|
catch(...)
|
||||||
{
|
{
|
||||||
@ -125,6 +131,7 @@ char *SMESH_MEDMesh_i::getName() throw(SALOME::SALOME_Exception)
|
|||||||
THROW_SALOME_CORBA_EXCEPTION("Unable to acces Mesh C++ Object",
|
THROW_SALOME_CORBA_EXCEPTION("Unable to acces Mesh C++ Object",
|
||||||
SALOME::INTERNAL_ERROR);
|
SALOME::INTERNAL_ERROR);
|
||||||
}
|
}
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
|
Loading…
x
Reference in New Issue
Block a user