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

View File

@@ -221,9 +221,9 @@ public:
return m_tablet; 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: protected:
/** /**

View File

@@ -266,9 +266,9 @@ public:
virtual void setNativePixelSize(void); 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: protected:

View File

@@ -276,9 +276,9 @@ public:
void processWin32TabletEvent(WPARAM wParam, LPARAM lParam); void processWin32TabletEvent(WPARAM wParam, LPARAM lParam);
void bringTabletContextToFront(); 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: protected:
GHOST_TSuccess initMultisample(PIXELFORMATDESCRIPTOR pfd); GHOST_TSuccess initMultisample(PIXELFORMATDESCRIPTOR pfd);