]> git.saurik.com Git - wxWidgets.git/commitdiff
another fix for enter processing in wxSpinCtrl
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 6 Jun 2001 14:54:29 +0000 (14:54 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 6 Jun 2001 14:54:29 +0000 (14:54 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10440 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/spinctrl.cpp

index 5e23013cd84299baf270e3831a4657aac5c5f087..e4cef9f9ac4ed6ec6661fce486bcd1142686808a 100644 (file)
@@ -98,7 +98,12 @@ LRESULT APIENTRY _EXPORT wxBuddyTextWndProc(HWND hwnd,
             if (!(::IsWindow(hwnd) && ((wxSpinCtrl *)::GetWindowLong(hwnd, GWL_USERDATA)) == spin))
                 return 0;
             break;
+
+        case WM_GETDLGCODE:
+            // we want to get WXK_RETURN in order to generate the event for it
+            return DLGC_WANTCHARS;
     }
+
     return ::CallWindowProc(CASTWNDPROC spin->GetBuddyWndProc(),
                             hwnd, message, wParam, lParam);
 }
@@ -248,9 +253,6 @@ bool wxSpinCtrl::Create(wxWindow *parent,
     if ( style & wxCLIP_SIBLINGS )
         msStyle |= WS_CLIPSIBLINGS;
 
-    // we want to get WXK_RETURN in order to generate the event for it
-    m_lDlgCode = DLGC_WANTCHARS;
-
     // create the text window
     m_hwndBuddy = (WXHWND)::CreateWindowEx
                     (