]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/tbar95.h
* Some more CopyObject()
[wxWidgets.git] / include / wx / msw / tbar95.h
index 4aae20d62a95996b560705480e8ea5f13fd55b13..17c0d2c5b7b775f0adedd74aaf39b0ad0a4b79af 100644 (file)
@@ -19,7 +19,7 @@
 #if wxUSE_BUTTONBAR && wxUSE_TOOLBAR
 #include "wx/tbarbase.h"
 
-WXDLLEXPORT_DATA(extern const char*) wxToolBarNameStr;
+WXDLLEXPORT_DATA(extern const wxChar*) wxToolBarNameStr;
 
 class WXDLLEXPORT wxToolBar95: public wxToolBarBase
 {
@@ -44,10 +44,10 @@ class WXDLLEXPORT wxToolBar95: public wxToolBarBase
             const wxString& name = wxToolBarNameStr);
 
   // Call default behaviour
-  void OnPaint(wxPaintEvent& event) { Default() ; }
-  void OnSize(wxSizeEvent& event) { Default() ; }
-  void OnMouseEvent(wxMouseEvent& event) { Default() ; }
-  void OnKillFocus(wxFocusEvent& event) { Default() ; }
+  void OnPaint(wxPaintEvent& WXUNUSED(event)) { Default() ; }
+  void OnSize(wxSizeEvent& WXUNUSED(event)) { Default() ; }
+  void OnKillFocus(wxFocusEvent& WXUNUSED(event)) { Default() ; }
+  void OnMouseEvent(wxMouseEvent& event);
 
   // Handle wxToolBar95 events
 
@@ -68,6 +68,7 @@ class WXDLLEXPORT wxToolBar95: public wxToolBarBase
   wxSize GetToolSize(void) const;
 
   wxSize GetMaxSize(void) const;
+
   void GetSize(int *w, int *y) const;
 
   virtual bool GetToolState(int toolIndex) const;
@@ -75,7 +76,7 @@ class WXDLLEXPORT wxToolBar95: public wxToolBarBase
   // Add all the buttons: required for Win95.
   virtual bool CreateTools(void);
   virtual void SetRows(int nRows);
-  virtual void Layout(void) {}
+  virtual void LayoutButtons(void) {}
 
   // The post-tool-addition call
   bool Realize() { return CreateTools(); };