From: Vadim Zeitlin Date: Sat, 15 Sep 2007 22:30:00 +0000 (+0000) Subject: corrected m_strings array creation broken by last changes X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f527e69e7cd07dd3b1e3ac46478ec7c9b7a7d95e corrected m_strings array creation broken by last changes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48713 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/univ/listbox.cpp b/src/univ/listbox.cpp index c26aafb29e..0255489bce 100644 --- a/src/univ/listbox.cpp +++ b/src/univ/listbox.cpp @@ -192,7 +192,7 @@ bool wxListBox::Create(wxWindow *parent, validator, name) ) return false; - m_strings = IsSorted() ? new wxArrayString : new wxSortedArrayString; + m_strings = IsSorted() ? new wxSortedArrayString : new wxArrayString; Set(n, choices);