]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/ogl/samples/ogledit/palette.h
Compilation fixes for OGL
[wxWidgets.git] / utils / ogl / samples / ogledit / palette.h
index 6159266230fc4a4d2994022ad5b235583d4e2e1d..3d0c7ff6146697c2afcfbedbfb1b2c47380a41fd 100644 (file)
 
 #include <wx/wx.h>
 #include <wx/string.h>
+#ifdef __WXGTK__
+#include <wx/toolbar.h>
+#else
 #include <wx/tbarsmpl.h>
+#endif
 
 /*
  * Object editor tool palette
 // TODO for wxWin: wxToolBar95 cannot be moved to a non-0,0 position!
 // Needs to have a parent window...
 // So use a simple toolbar at present.
+#ifdef __WXGTK__
+#define TOOLPALETTECLASS    wxToolBar
+#else
 #define TOOLPALETTECLASS    wxToolBarSimple
+#endif
 
 class EditorToolPalette: public TOOLPALETTECLASS
 {