ops. SetFocus should be public

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5305 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Guillermo Rodriguez Garcia
2000-01-08 16:10:31 +00:00
parent 70f7a477cb
commit b44d69bae3

View File

@@ -58,8 +58,9 @@ public:
// -------------------------------
virtual void SetValue(int val) { wxSpinButton::SetValue(val); }
virtual int GetValue() const;
virtual int GetValue() const;
virtual bool SetFont(const wxFont &font);
virtual void SetFocus();
virtual bool Enable(bool enable = TRUE);
virtual bool Show(bool show = TRUE);
@@ -67,7 +68,6 @@ public:
protected:
virtual void DoMoveWindow(int x, int y, int width, int height);
virtual wxSize DoGetBestSize() const;
virtual void SetFocus();
// the handler for wxSpinButton events
void OnSpinChange(wxSpinEvent& event);