]> git.saurik.com Git - wxWidgets.git/commitdiff
ops. SetFocus should be public
authorGuillermo Rodriguez Garcia <guille@iies.es>
Sat, 8 Jan 2000 16:10:31 +0000 (16:10 +0000)
committerGuillermo Rodriguez Garcia <guille@iies.es>
Sat, 8 Jan 2000 16:10:31 +0000 (16:10 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5305 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/msw/spinctrl.h

index 4a5d3d56aa07e7c1929eeb4ac980b804a6f01476..746cf4d70749e9ec694a679fa5a8c506bc22d2df 100644 (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);