Fixed warnings reported on CDash

This commit is contained in:
Robert Osfield
2009-01-09 15:09:39 +00:00
parent 1289528770
commit 1def3b3512
2 changed files with 4 additions and 3 deletions

View File

@@ -1977,7 +1977,7 @@ HCURSOR GraphicsWindowWin32::getOrCreateCursor(MouseCursor mouseCursor)
_mouseCursorMap[mouseCursor] = NULL;
break;
case RightArrowCursor:
_mouseCursorMap[mouseCursor] = LoadCursor( NULL, IDC_ARROW);
_mouseCursorMap[mouseCursor] = LoadCursor( NULL, IDC_ARROW);
break;
case LeftArrowCursor:
_mouseCursorMap[mouseCursor] = LoadCursor( NULL, IDC_ARROW);
@@ -2036,6 +2036,8 @@ HCURSOR GraphicsWindowWin32::getOrCreateCursor(MouseCursor mouseCursor)
case BottomLeftCorner:
_mouseCursorMap[mouseCursor] = LoadCursor( NULL, IDC_SIZENESW );
break;
default:
break;
}
return _mouseCursorMap[mouseCursor];
@@ -2445,7 +2447,7 @@ struct RegisterWindowingSystemInterfaceProxy
static RegisterWindowingSystemInterfaceProxy createWindowingSystemInterfaceProxy;
}; // namespace OsgViewer
} // namespace OsgViewer
// declare C entry point for static compilation.