Compilation fixes for OGL

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1268 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1998-12-27 14:44:40 +00:00
parent a6b0bd49c7
commit bec3e8601d
11 changed files with 346 additions and 0 deletions

View File

@@ -18,7 +18,11 @@
#include <wx/wx.h>
#include <wx/string.h>
#ifdef __WXGTK__
#include <wx/toolbar.h>
#else
#include <wx/tbarsmpl.h>
#endif
/*
* Object editor tool palette
@@ -28,7 +32,11 @@
// 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
{