X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FVTKViewer%2FVTKViewer_FramedTextActor.cxx;h=efd2ae0c14acc423c25bc751e63673083e662116;hb=refs%2Fheads%2Fngr%2Fpython3_dev_pv5.4;hp=a902d92a608fb7362748520bf860ea374f0994f5;hpb=c4b058d18583af7f94042eb55d4b933dd222d2e6;p=modules%2Fgui.git diff --git a/src/VTKViewer/VTKViewer_FramedTextActor.cxx b/src/VTKViewer/VTKViewer_FramedTextActor.cxx index a902d92a6..efd2ae0c1 100644 --- a/src/VTKViewer/VTKViewer_FramedTextActor.cxx +++ b/src/VTKViewer/VTKViewer_FramedTextActor.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -52,7 +52,7 @@ namespace return QString( txt ); #endif } - const char* toUtf8( const QString& txt ) + std::string toUtf8( const QString& txt ) { #ifdef PAL22528_UNICODE return txt.toUtf8().constData(); @@ -300,7 +300,7 @@ void VTKViewer_FramedTextActor::SetText(const char* theText) while(anIter.hasNext()) aTrimmedStringList.append(anIter.next().trimmed()); - myTextActor->SetInput(toUtf8(aTrimmedStringList.join("\n"))); + myTextActor->SetInput(toUtf8(aTrimmedStringList.join("\n")).c_str()); Modified(); }