]> git.saurik.com Git - wxWidgets.git/commitdiff
Event typo fixed
authorJulian Smart <julian@anthemion.co.uk>
Mon, 10 Dec 2001 11:39:06 +0000 (11:39 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Mon, 10 Dec 2001 11:39:06 +0000 (11:39 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12967 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/spinctlg.cpp

index f61ac2c516e385a9fb25111dbdb980cc7c2bdae3..ff767d2848d3b917de3543e5b700420eb24390f1 100644 (file)
@@ -118,8 +118,8 @@ protected:
 
       m_spin->GetEventHandler()->ProcessEvent(event);
 #else
-        m_spin->SetTextValue(event.GetPosition());
-        event.Skip();
+        m_spin->SetTextValue(eventSpin.GetPosition());
+        eventSpin.Skip();
 #endif
     }