From 48e70c0948fb699c4646785e3532b74e867c3e31 Mon Sep 17 00:00:00 2001 From: Paul MARTZ Date: Wed, 30 Jul 2008 15:45:28 +0000 Subject: [PATCH] From Philip Lowman: The osgWidget/Window header file is missing a few export (declspec) declarations on some namespace functions. I noticed because MinGW is failing to link the osgwidgetbox example. --- include/osgWidget/Window | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/osgWidget/Window b/include/osgWidget/Window index c13a8e50c..d89c7c96e 100644 --- a/include/osgWidget/Window +++ b/include/osgWidget/Window @@ -29,13 +29,13 @@ namespace osgWidget { // These are helper callbacks you can attach to Windows that will make them moveable, // rotatable, and scalable respectively. -bool callbackWindowMove (Event&); -bool callbackWindowRotate (Event&); -bool callbackWindowScale (Event&); +bool OSGWIDGET_EXPORT callbackWindowMove (Event&); +bool OSGWIDGET_EXPORT callbackWindowRotate (Event&); +bool OSGWIDGET_EXPORT callbackWindowScale (Event&); // These are helper callbacks you can attach to Windows to that will make various // keyboard events behave as you might imagine. -bool callbackWindowTabFocus(Event&); +bool OSGWIDGET_EXPORT callbackWindowTabFocus(Event&); class OSGWIDGET_EXPORT Window: public osg::MatrixTransform,