From 728f9a0bade6d6013736f1098851c8949e7297ce Mon Sep 17 00:00:00 2001 From: eap Date: Tue, 21 Apr 2009 10:45:40 +0000 Subject: [PATCH] TCollection_AsciiString anEntry; ... - anEntry = aSObj->GetID(); + CORBA::String_var anEntry = aSObj->GetID(); --- src/SMESH_I/SMESH_DumpPython.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/SMESH_I/SMESH_DumpPython.cxx b/src/SMESH_I/SMESH_DumpPython.cxx index feb6602be..e67e4a355 100644 --- a/src/SMESH_I/SMESH_DumpPython.cxx +++ b/src/SMESH_I/SMESH_DumpPython.cxx @@ -785,9 +785,9 @@ TCollection_AsciiString SMESH_Gen_i::DumpPython_impl // mesh auto color if( !CORBA::is_nil(aMesh) && aMesh->GetAutoColor() ) { - anEntry = aSObj->GetID(); + CORBA::String_var anEntry = aSObj->GetID(); anUpdatedScript += - SMESH_Comment("\n\t") << theObjectNames(anEntry) << ".SetAutoColor(1)"; + SMESH_Comment("\n\t") << theObjectNames(anEntry.inout()) << ".SetAutoColor(1)"; } SMESH::SMESH_GroupBase_var aGroup = SMESH::SMESH_GroupBase::_narrow( SObjectToObject(aSObj)); if( !CORBA::is_nil(aGroup) ) @@ -795,10 +795,10 @@ TCollection_AsciiString SMESH_Gen_i::DumpPython_impl SALOMEDS::Color aColor = aGroup->GetColor(); if ( aColor.R > 0 || aColor.G > 0 || aColor.B > 0 ) { - anEntry = aSObj->GetID(); - anUpdatedScript += - SMESH_Comment("\n\t") << theObjectNames(anEntry) << ".SetColor(SALOMEDS.Color(" - << aColor.R <<", "<< aColor.G <<", "<< aColor.B <<" ))"; + CORBA::String_var anEntry = aSObj->GetID(); + anUpdatedScript += SMESH_Comment("\n\t") + << theObjectNames(anEntry.inout()) << ".SetColor(SALOMEDS.Color(" + << aColor.R <<", "<< aColor.G <<", "<< aColor.B <<" ))"; } } }