[osg-users] osgWidget-0.2.0 Link Error in VC8

2008-05-05 Thread Green
There are two link errors: The first: 1>osgwidgetscrolled.obj : error LNK2019: unresolved external symbol "public: bool __thiscall osgWidget::Window::EmbeddedWindow::setWindow(class osgWidget::Window *)" ([EMAIL PROTECTED]@[EMAIL PROTECTED]@@QAE_NPAV23@@Z) referenced in function _main 1>Debug\os

Re: [osg-users] osgWidget-0.2.0 Link Error in VC8

2008-05-05 Thread Jeremy Moles
On Mon, 2008-05-05 at 15:12 +0800, Green wrote: > There are two link errors: > > The first: > > 1>osgwidgetscrolled.obj : error LNK2019: unresolved external symbol > "public: bool __thiscall > osgWidget::Window::EmbeddedWindow::setWindow(class osgWidget::Window > *)" ([EMAIL PROTECTED]@[EMAIL PR

Re: [osg-users] osgWidget-0.2.0 Link Error in VC8

2008-05-05 Thread Mattias Helsing
Hi Green, Try putting a "OSG_EXPORT" between class and EmbeddedWindow in Window.h. The same goes for some other classes (CORNER and BORDER in Frame - only needed if you subclass Frame) . osgWidget isn't in a well-tested state yet and Jeremy is working hard to work up some muscles in osgWidget. ho

Re: [osg-users] osgWidget-0.2.0 Link Error in VC8

2008-05-06 Thread Jeremy Moles
On Tue, 2008-05-06 at 00:15 +0200, Mattias Helsing wrote: > Hi Green, > > Try putting a "OSG_EXPORT" between class and EmbeddedWindow in > Window.h. The same goes for some other classes (CORNER and BORDER in > Frame - only needed if you subclass Frame) . osgWidget isn't in a > well-tested state ye