]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stubs/toolbar.cpp
minor fix to find contents file alright
[wxWidgets.git] / src / stubs / toolbar.cpp
index 61f34c8283ffae66e34e70426988a10fdcc434b0..3cb859e3663f8890c53ac03a83946a4211578515 100644 (file)
 #pragma implementation "toolbar.h"
 #endif
 
-// For compilers that support precompilation, includes "wx.h".
-#include "wx/wxprec.h"
-
-#ifdef __BORLANDC__
-#pragma hdrstop
-#endif
-
-#ifndef WX_PRECOMP
-#include "wx.h"
-#endif
-
+#include "wx/wx.h"
 #include "wx/toolbar.h"
 
 #if !USE_SHARED_LIBRARY
@@ -105,7 +95,6 @@ void wxToolBar::EnableTool(int toolIndex, bool enable)
         tool->m_enabled = enable;
         // TODO enable button
     }
-  }
 }
 
 void wxToolBar::ToggleTool(int toolIndex, bool toggle)
@@ -135,7 +124,7 @@ void wxToolBar::ClearTools()
 wxToolBarTool *wxToolBar::AddTool(int index, const wxBitmap& bitmap, const wxBitmap& pushedBitmap,
              bool toggle, long xPos, long yPos, wxObject *clientData, const wxString& helpString1, const wxString& helpString2)
 {
-  wxToolBarTool *tool = new wxToolBarTool(index, bitmap, (wxBitmap *)NULL, toggle, xPos, yPos, helpString1, helpString2);
+  wxToolBarTool *tool = new wxToolBarTool(index, bitmap, wxNullBitmap, toggle, xPos, yPos, helpString1, helpString2);
   tool->m_clientData = clientData;
 
   if (xPos > -1)