Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntony Riakiotakis <kalast@gmail.com>2013-02-24 18:02:45 +0400
committerAntony Riakiotakis <kalast@gmail.com>2013-02-24 18:02:45 +0400
commit08ff355a3a87ab14451216a63aa7464c03796716 (patch)
tree3c5daba7c3d643b58a3beb5e09977ee90bd0f2d8 /intern/ghost
parent610017d0e8c08010a35f92ab4169d8590dcf9f1c (diff)
Compile fix round 2. Still trying to do this from linux :p
Diffstat (limited to 'intern/ghost')
-rw-r--r--intern/ghost/intern/GHOST_WindowCarbon.h4
-rw-r--r--intern/ghost/intern/GHOST_WindowCocoa.h4
-rw-r--r--intern/ghost/intern/GHOST_WindowWin32.h4
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);