From 08ff355a3a87ab14451216a63aa7464c03796716 Mon Sep 17 00:00:00 2001 From: Antony Riakiotakis Date: Sun, 24 Feb 2013 14:02:45 +0000 Subject: [PATCH] Compile fix round 2. Still trying to do this from linux :p --- intern/ghost/intern/GHOST_WindowCarbon.h | 4 ++-- intern/ghost/intern/GHOST_WindowCocoa.h | 4 ++-- intern/ghost/intern/GHOST_WindowWin32.h | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/intern/ghost/intern/GHOST_WindowCarbon.h b/intern/ghost/intern/GHOST_WindowCarbon.h index 37dc4f5c092..16f305e93c5 100644 --- a/intern/ghost/intern/GHOST_WindowCarbon.h +++ b/intern/ghost/intern/GHOST_WindowCarbon.h @@ -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: /** diff --git a/intern/ghost/intern/GHOST_WindowCocoa.h b/intern/ghost/intern/GHOST_WindowCocoa.h index 46f0cab2553..fe0830edeae 100644 --- a/intern/ghost/intern/GHOST_WindowCocoa.h +++ b/intern/ghost/intern/GHOST_WindowCocoa.h @@ -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: diff --git a/intern/ghost/intern/GHOST_WindowWin32.h b/intern/ghost/intern/GHOST_WindowWin32.h index 5daa38a4e4c..2af4b703930 100644 --- a/intern/ghost/intern/GHOST_WindowWin32.h +++ b/intern/ghost/intern/GHOST_WindowWin32.h @@ -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);