]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/spinctrl.cpp
Attempts to reduce errors in compile farm for
[wxWidgets.git] / src / msw / spinctrl.cpp
index 22ee0816c994a84e47afdf81fb5cbb32a8c9472f..dbf5cdceef1a3bd91550f85a00294f72ad7b16e3 100644 (file)
@@ -85,9 +85,12 @@ LRESULT APIENTRY _EXPORT wxBuddyTextWndProc(HWND hwnd,
 {
     wxSpinCtrl *spin = (wxSpinCtrl *)::GetWindowLong(hwnd, GWL_USERDATA);
 
-    // forward some messages (the key ones only so far) to the spin ctrl
+    // forward some messages (the key and focus ones only so far) to
+    // the spin ctrl
     switch ( message )
     {
+        case WM_SETFOCUS:
+        case WM_KILLFOCUS:
         case WM_CHAR:
         case WM_DEADCHAR:
         case WM_KEYUP: