From 9d711d80e93e2799dc2e54c312b6bb30d7375855 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 19 Feb 2003 21:37:12 +0000 Subject: [PATCH] Added missing std:: infront of string usage. --- src/osgGA/KeySwitchCameraManipulator.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osgGA/KeySwitchCameraManipulator.cpp b/src/osgGA/KeySwitchCameraManipulator.cpp index eb21de05a..f890e0b47 100644 --- a/src/osgGA/KeySwitchCameraManipulator.cpp +++ b/src/osgGA/KeySwitchCameraManipulator.cpp @@ -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);