From: Vadim Zeitlin Date: Thu, 4 Jul 2002 23:23:25 +0000 (+0000) Subject: argh, last compilation fix had a typo, fixed now X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/be519ffb6165a88c52305b31a1b9658b9d3e1614?ds=sidebyside argh, last compilation fix had a typo, fixed now git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16042 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/spinbutt.cpp b/src/msw/spinbutt.cpp index 7ca93d2cb8..59f3dd5bf8 100644 --- a/src/msw/spinbutt.cpp +++ b/src/msw/spinbutt.cpp @@ -246,7 +246,7 @@ bool wxSpinButton::MSWOnScroll(int WXUNUSED(orientation), WXWORD wParam, bool wxSpinButton::MSWOnNotify(int WXUNUSED(idCtrl), WXLPARAM lParam, WXLPARAM *result) { - NM_UPDOWN lpnmud = (NM_UPDOWN *)lParam; + NM_UPDOWN *lpnmud = (NM_UPDOWN *)lParam; if (lpnmud->hdr.hwndFrom != GetHwnd()) // make sure it is the right control return FALSE;