From f527e69e7cd07dd3b1e3ac46478ec7c9b7a7d95e Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 15 Sep 2007 22:30:00 +0000 Subject: [PATCH] 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 --- src/univ/listbox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.50.0