[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [54814] trunk/blender/intern/ghost/intern: Compile fix round 2.

Antony Riakiotakis kalast at gmail.com
Sun Feb 24 15:02:45 CET 2013


Revision: 54814
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=54814
Author:   psy-fi
Date:     2013-02-24 14:02:45 +0000 (Sun, 24 Feb 2013)
Log Message:
-----------
Compile fix round 2. Still trying to do this from linux :p

Modified Paths:
--------------
    trunk/blender/intern/ghost/intern/GHOST_WindowCarbon.h
    trunk/blender/intern/ghost/intern/GHOST_WindowCocoa.h
    trunk/blender/intern/ghost/intern/GHOST_WindowWin32.h

Modified: trunk/blender/intern/ghost/intern/GHOST_WindowCarbon.h
===================================================================
--- trunk/blender/intern/ghost/intern/GHOST_WindowCarbon.h	2013-02-24 13:51:12 UTC (rev 54813)
+++ trunk/blender/intern/ghost/intern/GHOST_WindowCarbon.h	2013-02-24 14:02:45 UTC (rev 54814)
@@ -221,9 +221,9 @@
 		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:
 	/**

Modified: trunk/blender/intern/ghost/intern/GHOST_WindowCocoa.h
===================================================================
--- trunk/blender/intern/ghost/intern/GHOST_WindowCocoa.h	2013-02-24 13:51:12 UTC (rev 54813)
+++ trunk/blender/intern/ghost/intern/GHOST_WindowCocoa.h	2013-02-24 14:02:45 UTC (rev 54814)
@@ -266,9 +266,9 @@
 	
 	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:

Modified: trunk/blender/intern/ghost/intern/GHOST_WindowWin32.h
===================================================================
--- trunk/blender/intern/ghost/intern/GHOST_WindowWin32.h	2013-02-24 13:51:12 UTC (rev 54813)
+++ trunk/blender/intern/ghost/intern/GHOST_WindowWin32.h	2013-02-24 14:02:45 UTC (rev 54814)
@@ -276,9 +276,9 @@
 	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);




More information about the Bf-blender-cvs mailing list