From 352204f358e180f17189d601d3373b04f98750b1 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 6 Mar 2003 11:18:38 +0000 Subject: [PATCH] Renamed Text::TextString String. --- src/osgPlugins/osgText/IO_Text.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osgPlugins/osgText/IO_Text.cpp b/src/osgPlugins/osgText/IO_Text.cpp index 4fc0b5846..060522714 100644 --- a/src/osgPlugins/osgText/IO_Text.cpp +++ b/src/osgPlugins/osgText/IO_Text.cpp @@ -104,9 +104,9 @@ bool Text_writeLocalData(const osg::Object &obj, osgDB::Output &fw) fw.indent() << "alignment " << text.getAlignment() << std::endl; // text - const osgText::Text::TextString& textstring = text.getText(); + const osgText::String& textstring = text.getText(); bool isACString = true; - for(osgText::Text::TextString::const_iterator itr=textstring.begin(); + for(osgText::String::const_iterator itr=textstring.begin(); itr!=textstring.end() && isACString; ++itr) {