]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix compilation of wxSpinCtrlGenericBase when PCH are not used.
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 22 Jul 2010 13:42:38 +0000 (13:42 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 22 Jul 2010 13:42:38 +0000 (13:42 +0000)
This fixes PCH-less compilation broken by r65043.

Closes #12259 (again).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65044 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/generic/spinctlg.h
src/generic/spinctlg.cpp

index 19a78bb8812e1fcd3e2d8fdedaeb60c9a7378b7a..2cc581c92836028fc702f728736ef7fde9902248 100644 (file)
@@ -96,7 +96,7 @@ public:
     // shouldn't accept the focus at all and any attempts to explicitly set
     // focus to it should give focus to its text constol part
     virtual bool AcceptsFocus() const { return false; }
-    virtual void SetFocus() { if ( m_textCtrl ) m_textCtrl->SetFocus(); }
+    virtual void SetFocus();
 
     friend class wxSpinCtrlTextGeneric;
 
index d872780e9c59fe8e29b3235f40a01ce29f4c27b9..d3c1cdb4a6d2d82dc25832b54dfc36ca3f266a9d 100644 (file)
@@ -279,6 +279,12 @@ void wxSpinCtrlGenericBase::DoMoveWindow(int x, int y, int width, int height)
 // operations forwarded to the subcontrols
 // ----------------------------------------------------------------------------
 
+void wxSpinCtrlGenericBase::SetFocus()
+{
+    if ( m_textCtrl )
+        m_textCtrl->SetFocus();
+}
+
 bool wxSpinCtrlGenericBase::Enable(bool enable)
 {
     // Notice that we never enable this control itself, it must stay disabled