]> git.saurik.com Git - wxWidgets.git/blobdiff - src/univ/listbox.cpp
readding trace constant
[wxWidgets.git] / src / univ / listbox.cpp
index 7c1ca6dcca6e543a792130da99fb32595728a051..0255489bceac84129857d69ca260f7667ff96b59 100644 (file)
@@ -97,7 +97,7 @@ protected:
 // implementation of wxListBox
 // ============================================================================
 
-IMPLEMENT_DYNAMIC_CLASS(wxListBox, wxControl)
+IMPLEMENT_DYNAMIC_CLASS(wxListBox, wxControlWithItems)
 
 BEGIN_EVENT_TABLE(wxListBox, wxListBoxBase)
     EVT_SIZE(wxListBox::OnSize)
@@ -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);