From 86d2c8099a6a103fa070e657d82082f24a196575 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin <vadim@wxwidgets.org> Date: Sun, 22 May 2005 14:03:47 +0000 Subject: [PATCH] include wx/defs.h before doing anything else (fixes 1204489) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34247 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/cursor.h | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/include/wx/cursor.h b/include/wx/cursor.h index 651afd5a09..f86aa818d2 100644 --- a/include/wx/cursor.h +++ b/include/wx/cursor.h @@ -12,24 +12,26 @@ #ifndef _WX_CURSOR_H_BASE_ #define _WX_CURSOR_H_BASE_ +#include "wx/defs.h" + #if defined(__WXPALMOS__) -#include "wx/palmos/cursor.h" + #include "wx/palmos/cursor.h" #elif defined(__WXMSW__) -#include "wx/msw/cursor.h" + #include "wx/msw/cursor.h" #elif defined(__WXMOTIF__) -#include "wx/motif/cursor.h" + #include "wx/motif/cursor.h" #elif defined(__WXGTK__) -#include "wx/gtk/cursor.h" + #include "wx/gtk/cursor.h" #elif defined(__WXX11__) -#include "wx/x11/cursor.h" + #include "wx/x11/cursor.h" #elif defined(__WXMGL__) -#include "wx/mgl/cursor.h" + #include "wx/mgl/cursor.h" #elif defined(__WXMAC__) -#include "wx/mac/cursor.h" + #include "wx/mac/cursor.h" #elif defined(__WXCOCOA__) -#include "wx/cocoa/cursor.h" + #include "wx/cocoa/cursor.h" #elif defined(__WXPM__) -#include "wx/os2/cursor.h" + #include "wx/os2/cursor.h" #endif #include "wx/utils.h" -- 2.47.2