From: Vadim Zeitlin Date: Fri, 10 May 2002 12:56:51 +0000 (+0000) Subject: fixed compilation error when x-compiling (patch from Fabian Wenzel) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/14494b5b29ad36bc39fb52d732e506f75ec9bba2?ds=inline fixed compilation error when x-compiling (patch from Fabian Wenzel) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15482 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/opengl/penguin/lw.cpp b/samples/opengl/penguin/lw.cpp index 7d83324bbd..44c2dd32b4 100644 --- a/samples/opengl/penguin/lw.cpp +++ b/samples/opengl/penguin/lw.cpp @@ -16,10 +16,6 @@ * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifdef __WXMSW__ -#include -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -31,19 +27,15 @@ #include "wx/wx.h" #endif +#ifdef __WXMSW__ +#include +#endif + #include "lw.h" #include #include #include -#ifndef FALSE -#define FALSE 0 -#endif - -#ifndef TRUE -#define TRUE 1 -#endif - #define MK_ID(a,b,c,d) ((((wxUint32)(a))<<24)| \ (((wxUint32)(b))<<16)| \ (((wxUint32)(c))<< 8)| \