]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/tbarsmpl.h
Fixed typos in window.cpp and utils.cpp
[wxWidgets.git] / include / wx / tbarsmpl.h
index 5094b665d9ddfc94a288200a923e042b6ebbd42f..54e1354a7773334b61b09cd5c394e4ce4527edcc 100644 (file)
@@ -18,7 +18,7 @@
 
 #include "wx/defs.h"
 
-#if USE_TOOLBAR
+#if wxUSE_TOOLBAR
 
 #include "wx/bitmap.h"
 #include "wx/list.h"
@@ -26,7 +26,7 @@
 
 class WXDLLEXPORT wxMemoryDC;
 
-WXDLLEXPORT_DATA(extern const char*) wxToolBarNameStr;
+WXDLLEXPORT_DATA(extern const wxChar*) wxToolBarNameStr;
 WXDLLEXPORT_DATA(extern const wxSize) wxDefaultSize;
 WXDLLEXPORT_DATA(extern const wxPoint) wxDefaultPosition;
 
@@ -62,10 +62,10 @@ class WXDLLEXPORT wxToolBarSimple : public wxToolBarBase
 
   virtual void SpringUpButton(int index);
 
-  void Layout(void);
+  virtual void LayoutTools();
 
   // The post-tool-addition call
-  bool Realize() { Layout(); return TRUE; };
+  virtual bool Realize() { LayoutTools(); return TRUE; };
 
 protected:
   int                   m_currentRowsOrColumns;
@@ -75,7 +75,7 @@ DECLARE_EVENT_TABLE()
 
 };
 
-#endif // USE_TOOLBAR
+#endif // wxUSE_TOOLBAR
 #endif
     // _WX_TBARSMPLH__