X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ffecfa5aeb540b54914739dbb8603edbbd4c00a0..1aaf88d2208793f6a05f02c3e23ade668555d31e:/include/wx/palmos/spinbutt.h diff --git a/include/wx/palmos/spinbutt.h b/include/wx/palmos/spinbutt.h index 6e1931bfa3..1d9fc485a0 100644 --- a/include/wx/palmos/spinbutt.h +++ b/include/wx/palmos/spinbutt.h @@ -26,7 +26,7 @@ public: wxSpinButton() { } wxSpinButton(wxWindow *parent, - wxWindowID id = -1, + wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxSP_VERTICAL | wxSP_ARROW_KEYS, @@ -38,7 +38,7 @@ public: virtual ~wxSpinButton(); bool Create(wxWindow *parent, - wxWindowID id = -1, + wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxSP_VERTICAL | wxSP_ARROW_KEYS, @@ -50,14 +50,8 @@ public: virtual void SetValue(int val); virtual void SetRange(int minVal, int maxVal); - // implementation - virtual bool MSWCommand(WXUINT param, WXWORD id); - virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result); - virtual bool MSWOnScroll(int orientation, WXWORD wParam, - WXWORD pos, WXHWND control); - // a wxSpinButton can't do anything useful with focus, only wxSpinCtrl can - virtual bool AcceptsFocus() const { return FALSE; } + virtual bool AcceptsFocus() const { return false; } protected: virtual wxSize DoGetBestSize() const;