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
This commit is contained in:
Vadim Zeitlin
2002-07-04 23:23:25 +00:00
parent f6116855f0
commit be519ffb61

View File

@@ -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;