Compile fix round 2. Still trying to do this from linux :p

This commit is contained in:
Antony Riakiotakis 2013-02-24 14:02:45 +00:00
parent 610017d0e8
commit 08ff355a3a
3 changed files with 6 additions and 6 deletions

@ -221,9 +221,9 @@ public:
return m_tablet;
}
GHOST_TSuccess beginFullScreen() const {};
GHOST_TSuccess beginFullScreen() const {return GHOST_kFailure;}
GHOST_TSuccess endFullScreen() const {};
GHOST_TSuccess endFullScreen() const {return GHOST_kFailure;}
protected:
/**

@ -266,9 +266,9 @@ public:
virtual void setNativePixelSize(void);
GHOST_TSuccess beginFullScreen() const {};
GHOST_TSuccess beginFullScreen() const {return GHOST_kFailure;}
GHOST_TSuccess endFullScreen() const {};
GHOST_TSuccess endFullScreen() const {return GHOST_kFailure;}
protected:

@ -276,9 +276,9 @@ public:
void processWin32TabletEvent(WPARAM wParam, LPARAM lParam);
void bringTabletContextToFront();
GHOST_TSuccess beginFullScreen() const {};
GHOST_TSuccess beginFullScreen() const {return GHOST_kFailure;}
GHOST_TSuccess endFullScreen() const {};
GHOST_TSuccess endFullScreen() const {return GHOST_kFailure;}
protected:
GHOST_TSuccess initMultisample(PIXELFORMATDESCRIPTOR pfd);