]> git.saurik.com Git - wxWidgets.git/commitdiff
fix focus problems in picker controls under MSW which were due to not letting the...
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 6 Jul 2008 23:57:23 +0000 (23:57 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 6 Jul 2008 23:57:23 +0000 (23:57 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@54520 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/pickerbase.cpp

index 53ec72d19e064240ed421ccf572c4b7c5995462d..0176c2a2a829e4727980c3e5fc2a54e0708f152b 100644 (file)
@@ -144,9 +144,9 @@ void wxPickerBase::DoSetToolTip(wxToolTip *tip)
 // wxPickerBase - event handlers
 // ----------------------------------------------------------------------------
 
-void wxPickerBase::OnTextCtrlKillFocus(wxFocusEvent &)
+void wxPickerBase::OnTextCtrlKillFocus(wxFocusEvent& event)
 {
-    wxASSERT(m_text);
+    event.Skip();
 
     // don't leave the textctrl empty
     if (m_text->GetValue().empty())