]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/os2/button.h
Minor additions to make working with binary buffers easier.
[wxWidgets.git] / include / wx / os2 / button.h
index 802f1c3623bcfe00ad9bf45549cf4e483f775aea..ed2c8a8f40750b3f1e77bbc984736dbd8154fb5e 100644 (file)
@@ -25,7 +25,9 @@ class WXDLLEXPORT wxButton: public wxControl
   inline wxButton(wxWindow *parent, wxWindowID id, const wxString& label,
            const wxPoint& pos = wxDefaultPosition,
            const wxSize& size = wxDefaultSize, long style = 0,
+#if wxUSE_VALIDATORS
            const wxValidator& validator = wxDefaultValidator,
+#endif
            const wxString& name = wxButtonNameStr)
   {
       Create(parent, id, label, pos, size, style, validator, name);
@@ -34,7 +36,9 @@ class WXDLLEXPORT wxButton: public wxControl
   bool Create(wxWindow *parent, wxWindowID id, const wxString& label,
            const wxPoint& pos = wxDefaultPosition,
            const wxSize& size = wxDefaultSize, long style = 0,
+#if wxUSE_VALIDATORS
            const wxValidator& validator = wxDefaultValidator,
+#endif
            const wxString& name = wxButtonNameStr);
 
   virtual ~wxButton();
@@ -55,7 +59,7 @@ protected:
     // send a notification event, return TRUE if processed
     bool SendClickEvent();
 
-    virtual wxSize DoGetBestSize();
+    virtual wxSize DoGetBestSize() const;
 };
 
 #endif