Added missing osgDB:: to writeArray() usage.

This commit is contained in:
Robert Osfield
2003-03-11 13:24:28 +00:00
parent 06fb808ad3
commit 4cdbbf1b4a

View File

@@ -316,7 +316,7 @@ bool Text_writeLocalData(const osg::Object &obj, osgDB::Output &fw)
{
// do it the hardway...output each character as an int
fw.indent() << "text "<<textstring.size()<<std::endl;;
writeArray(fw,textstring.begin(),textstring.end());
osgDB::writeArray(fw,textstring.begin(),textstring.end());
}
return true;