Hi all,

Sorry to disturb but I have a question about the line breaker '\n'.

If I use text->setText("This is the first line \n This is the second line");

It works and gets the result as:

This is the first line
This is the second line

But if I read the string from a variable, it does not work, namely,

String str = "This is the first line \n This is the second line";
text->setText(str);

The result will be:

This is the first line \n This is the second line


Anyone knows why and how to deal with it?

I have to read lots of texts from external files.
So it is impossible to do it in the first way to directly put the texts there, 
but to read texts each time.



Thanks in advance for any kind reply!

Cheers,

Fan

------------------
Read this topic online here:
http://forum.openscenegraph.org/viewtopic.php?p=56110#56110





_______________________________________________
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

Reply via email to