]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/listbox.cpp
* GetValue() now returns true if the state is undetermined
[wxWidgets.git] / src / msw / listbox.cpp
index 90cfac17792dd7f8e8982855ef1405f4e06fa97d..1102d6f012b5d6325b4d4747615810b24f6a0832 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& wxVALIDATOR_PARAM(validator),
+                       const wxString& name)
+{
+    wxCArrayString chs(choices);
+    return Create(parent, id, pos, size, chs.GetCount(), chs.GetStrings(),
+                  style, validator, name);
+}
+
 wxListBox::~wxListBox()
 {
     Free();