Build fixes

This commit is contained in:
Robert Osfield
2006-03-14 13:18:21 +00:00
parent f3715665c0
commit d43dbaeadd
8 changed files with 15 additions and 10 deletions

View File

@@ -923,10 +923,9 @@ void Viewer::requestWarpPointer(float x,float y)
{
if (_kbmcb.valid() && isRealized())
{
osg::notify(osg::INFO) << "requestWarpPointer x= "<<x<<" y="<<y<<std::endl;
osg::notify(osg::NOTICE) << "requestWarpPointer x= "<<x<<" y="<<y<<std::endl;
getEventQueue()->getCurrentEventState()->setX(x);
getEventQueue()->getCurrentEventState()->setY(y);
getEventQueue()->mouseWarp(x,y);
_kbmcb->getKeyboardMouse()->positionPointer(x,y);
return;
}