From Rolad Smeenk, "Forgot a call to uniqify when generating an Id based on osg::Node name."

This commit is contained in:
Robert Osfield 2008-11-24 15:27:19 +00:00
parent 6ae07ce0e2
commit 9addcc050d

View File

@ -119,7 +119,7 @@ std::string daeWriter::getNodeName(const osg::Node & node,const std::string & de
if (node.getName().empty())
nodeName=uniquify(defaultName);
else
nodeName=node.getName();
nodeName=uniquify(node.getName());
return nodeName;
}
@ -198,4 +198,4 @@ void daeWriter::popStateSet(osg::StateSet* ss)
}
}
} // namespace osgdae
} // namespace osgdae