From: Kevin Ollivier Date: Sun, 24 Jan 2010 23:28:32 +0000 (+0000) Subject: Fix mistake, though this assert is unfortunate since now FindString("whatever") will... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/72247c2f537ab53e4a2b80e50e7050083a5fdf53 Fix mistake, though this assert is unfortunate since now FindString("whatever") will always assert under OS X Cocoa, even when it would find and return the position correctly. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63254 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/osx/combobox_osx.cpp b/src/osx/combobox_osx.cpp index ce11ad1a53..856a5b31e9 100644 --- a/src/osx/combobox_osx.cpp +++ b/src/osx/combobox_osx.cpp @@ -173,7 +173,7 @@ void wxComboBox::SetSelection(long from, long to) int wxComboBox::FindString(const wxString& s, bool bCase) const { - wxASSERT_MSG( "wxComboBox::FindString() doesn't currently support case " + wxASSERT_MSG(bCase, "wxComboBox::FindString() doesn't currently support case " "insensitive search in wxOSX/Cocoa"); return GetComboPeer()->FindString(s);