Added missing std:: infront of string usage.

This commit is contained in:
Robert Osfield
2003-02-19 21:37:12 +00:00
parent 7c6cdcde1e
commit 9d711d80e9

View File

@@ -68,8 +68,8 @@ void KeySwitchCameraManipulator::getUsage(osg::ApplicationUsage& usage) const
itr!=_manips.end();
++itr)
{
string key; key += (char)(itr->first);
string explanation(std::string("Select '")+itr->second.first+std::string("' camera manipulator"));
std::string key; key += (char)(itr->first);
std::string explanation(std::string("Select '")+itr->second.first+std::string("' camera manipulator"));
if (_current==itr->second.second) explanation += " (default)";
usage.addKeyboardMouseBinding(key,explanation);