]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/listbox.cpp
Need to use the same instance handles
[wxWidgets.git] / src / msw / listbox.cpp
index 90cfac17792dd7f8e8982855ef1405f4e06fa97d..9e4b653af8927c11963d090f27d0627bab8f068d 100644 (file)
@@ -251,6 +251,20 @@ bool wxListBox::Create(wxWindow *parent,
     return TRUE;
 }
 
+bool wxListBox::Create(wxWindow *parent,
+                       wxWindowID id,
+                       const wxPoint& pos,
+                       const wxSize& size,
+                       const wxArrayString& choices,
+                       long style,
+                       const wxValidator& validator,
+                       const wxString& name)
+{
+    wxCArrayString chs(choices);
+    return Create(parent, id, pos, size, chs.GetCount(), chs.GetStrings(),
+                  style, validator, name);
+}
+
 wxListBox::~wxListBox()
 {
     Free();