Small std::cout fix

This commit is contained in:
Don BURNS 2002-05-09 22:48:15 +00:00
parent d6ff23d32f
commit 0304b926d7

View File

@ -20,7 +20,7 @@ bool KeySwitchCameraManipulator::handle(const GUIEventAdapter& ea,GUIActionAdapt
KeyManipMap::iterator it=_manips.find(ea.getKey());
if(it != _manips.end()){
osg::notify(osg::INFO)<<"Switching to manipulator: "<<(*it).second.first<<std::endl;
cout<<"***Switching to manipulator: "<<(*it).second.first<<std::endl;
std::cout<<"***Switching to manipulator: "<<(*it).second.first<<std::endl;
it->second.second->setNode(_current->getNode());
it->second.second->setCamera(_current->getCamera());
it->second.second->init(ea,aa);