From 5be0851e6cb15d0bd797d33834ef64867bd2f839 Mon Sep 17 00:00:00 2001 From: mkr Date: Thu, 8 Feb 2007 07:00:50 +0000 Subject: [PATCH] Fix for IPAL14713 : Problem with "Add Node and Customize Parameters" on Mandriva 64. --- src/Supervision/Graph_Impl.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Supervision/Graph_Impl.cxx b/src/Supervision/Graph_Impl.cxx index 302e7c0..58c3400 100644 --- a/src/Supervision/Graph_Impl.cxx +++ b/src/Supervision/Graph_Impl.cxx @@ -2557,14 +2557,14 @@ void Graph_Impl::Editing() { * Returns the default name of container for C component */ char* Graph_Impl::DefaultCContainerName() { - return FACTORYSERVER; + return ( CORBA::string_dup( FACTORYSERVER ) ); } /** * Returns the default name of container for Python component */ char* Graph_Impl::DefaultPythonContainerName() { - return FACTORYSERVERPY; + return ( CORBA::string_dup( FACTORYSERVERPY ) ); } /*! -- 2.39.2