]> git.saurik.com Git - wxWidgets.git/commitdiff
solving include order problems for stl and xti
authorStefan Csomor <csomor@advancedconcepts.ch>
Thu, 19 Jan 2012 15:01:01 +0000 (15:01 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Thu, 19 Jan 2012 15:01:01 +0000 (15:01 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70402 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/osx/cocoa/anybutton.mm
src/osx/cocoa/button.mm
src/osx/cocoa/dnd.mm
src/osx/cocoa/toolbar.mm
src/osx/uiaction_osx.cpp

index c90127bcea52ac6a2e72db970446a836cae8d8db..866866f3501885c3b6b79df07da00dc5b95a6d6f 100644 (file)
 
 #include "wx/wxprec.h"
 
-#include "wx/button.h"
-
 #ifndef WX_PRECOMP
+#include "wx/object.h"
 #endif
 
+#include "wx/button.h"
+
 #include "wx/osx/private.h"
 
 wxSize wxAnyButton::DoGetBestSize() const
index 3e4288ba8e4debc5134e0aa92857aa3b6e273cb5..8ed183958e6d1dee3ddc97eaf4698801e7fd596e 100644 (file)
 
 #include "wx/wxprec.h"
 
-#include "wx/button.h"
-
 #ifndef WX_PRECOMP
+#include "wx/object.h"
 #endif
 
+#include "wx/button.h"
+
 #include "wx/osx/private.h"
 
 #if wxUSE_MARKUP
index ecfa2e2b916489a4fc01626588caa5c0f965417e..c697420bd81d6c0c113a273605de146fb07d98b9 100644 (file)
 
 #include "wx/wxprec.h"
 
+#ifndef WX_PRECOMP
+#include "wx/object.h"
+#endif
+
 #if wxUSE_DRAG_AND_DROP
 
 #include "wx/dnd.h"
index dd7894fa6076c7f28ca1d0599d0636013531c558..a253e011aa3a11dd49d544448b277117e69730ec 100644 (file)
 
 #if wxUSE_TOOLBAR
 
-#include "wx/toolbar.h"
-
 #ifndef WX_PRECOMP
     #include "wx/wx.h"
 #endif
 
+#include "wx/toolbar.h"
 #include "wx/app.h"
 #include "wx/osx/private.h"
 #include "wx/geometry.h"
index 60cd4da9d8d6edc2556508835e0ee00b8304847c..2819bca848de13852f864c3b5f20e6af6f0b2d5c 100644 (file)
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#include "wx/defs.h"
+#include "wx/wxprec.h"
+
+#ifndef WX_PRECOMP
+#include "wx/object.h"
+#endif
 
 #if wxUSE_UIACTIONSIMULATOR