From 216870690e1f37e0ff8c9288011b1a916751d767 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 18 Oct 2000 17:23:04 +0000 Subject: [PATCH] crash due to missing break before WM_HELP handler fixed git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8578 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/radiobox.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/msw/radiobox.cpp b/src/msw/radiobox.cpp index 2d20f24418..54cd5c5a97 100644 --- a/src/msw/radiobox.cpp +++ b/src/msw/radiobox.cpp @@ -1025,6 +1025,8 @@ LRESULT APIENTRY _EXPORT wxRadioBtnWndProc(HWND hwnd, } } } + break; + #ifdef __WIN32__ case WM_HELP: { -- 2.50.0