]> git.saurik.com Git - wxWidgets.git/commitdiff
Allow wxComboBox to get key events for ENTER with wxPROCESS_ENTER style.
authorRobin Dunn <robin@alldunn.com>
Fri, 12 Jul 2002 15:45:35 +0000 (15:45 +0000)
committerRobin Dunn <robin@alldunn.com>
Fri, 12 Jul 2002 15:45:35 +0000 (15:45 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16147 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/combobox.cpp

index e8bfc1b6d563b866f978398e0b6efc8067dc2cf9..ceb2d59b8e8b51cc9220a852490674cfc8d4b6f3 100644 (file)
@@ -114,7 +114,6 @@ LRESULT APIENTRY _EXPORT wxComboEditWndProc(HWND hWnd,
             }
             break;
 
-#if 0
         case WM_GETDLGCODE:
             {
                 wxCHECK_MSG( win, 0, _T("should have a parent") );
@@ -126,7 +125,6 @@ LRESULT APIENTRY _EXPORT wxComboEditWndProc(HWND hWnd,
                 }
             }
             break;
-#endif // 0
 
         // deal with tooltips here
 #if wxUSE_TOOLTIPS && defined(TTN_NEEDTEXT)