mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-12-26 09:20:35 +05:00
Implement unicode support in SALOME: first attempt
This commit is contained in:
parent
001d93f1ef
commit
0989b7fd03
@ -3525,10 +3525,10 @@ bool GeometryGUI::renameObject( const QString& entry, const QString& name)
|
|||||||
if ( obj->FindAttribute(anAttr, "AttributeName") ) {
|
if ( obj->FindAttribute(anAttr, "AttributeName") ) {
|
||||||
_PTR(AttributeName) aName (anAttr);
|
_PTR(AttributeName) aName (anAttr);
|
||||||
|
|
||||||
aName->SetValue( name.toLatin1().data() ); // rename the SObject
|
aName->SetValue( name.toUtf8().data() ); // rename the SObject
|
||||||
GEOM::GEOM_Object_var anObj = GEOM::GEOM_Object::_narrow(GeometryGUI::ClientSObjectToObject(obj));
|
GEOM::GEOM_Object_var anObj = GEOM::GEOM_Object::_narrow(GeometryGUI::ClientSObjectToObject(obj));
|
||||||
if (!CORBA::is_nil(anObj)) {
|
if (!CORBA::is_nil(anObj)) {
|
||||||
anObj->SetName( name.toLatin1().data() ); // Rename the corresponding GEOM_Object
|
anObj->SetName( name.toUtf8().data() ); // Rename the corresponding GEOM_Object
|
||||||
emit SignalDependencyTreeRenameObject( anObj->GetEntry() );
|
emit SignalDependencyTreeRenameObject( anObj->GetEntry() );
|
||||||
emit SignalTextTreeRenameObject( entry );
|
emit SignalTextTreeRenameObject( entry );
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user