diff --git a/plugins/3d/oce/loadmodel.cpp b/plugins/3d/oce/loadmodel.cpp index 49d6b739cb..fb5914f33d 100644 --- a/plugins/3d/oce/loadmodel.cpp +++ b/plugins/3d/oce/loadmodel.cpp @@ -74,6 +74,7 @@ #include <TDF_LabelSequence.hxx> #include <TDF_ChildIterator.hxx> +#include <TDataStd_Name.hxx> #include "plugins/3dapi/ifsg_all.h" @@ -308,6 +309,24 @@ FormatType fileType( const char* aFileName ) } +static wxString getLabelName( const TDF_Label& label ) +{ + wxString txt; + Handle( TDataStd_Name ) name; + if( !label.IsNull() && label.FindAttribute( TDataStd_Name::GetID(), name ) ) + { + TCollection_ExtendedString extstr = name->Get(); + char* str = new char[extstr.LengthOfCString() + 1]; + extstr.ToUTF8CString( str ); + + txt = wxString::FromUTF8( str ); + delete[] str; + txt = txt.Trim(); + } + return txt; +} + + void getTag( TDF_Label& label, std::string& aTag ) { if( label.IsNull() )