]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cocoa/checklst.h
added wx/msw/wince/libraries.h to workaround SDK differences problems
[wxWidgets.git] / include / wx / cocoa / checklst.h
index 4286b1a3d65edf5717ed63e74d61f1ac51c5d81f..7b4c59315dfc66f8f2e56f7695cbd107eafa5941 100644 (file)
@@ -37,6 +37,16 @@ public:
     {
         Create(parent, winid,  pos, size, n, choices, style, validator, name);
     }
+    wxCheckListBox(wxWindow *parent, wxWindowID winid,
+            const wxPoint& pos,
+            const wxSize& size,
+            const wxArrayString& choices,
+            long style = 0,
+            const wxValidator& validator = wxDefaultValidator,
+            const wxString& name = wxListBoxNameStr)
+    {
+        Create(parent, winid,  pos, size, choices, style, validator, name);
+    }
 
     bool Create(wxWindow *parent, wxWindowID winid,
             const wxPoint& pos = wxDefaultPosition,
@@ -45,6 +55,13 @@ public:
             long style = 0,
             const wxValidator& validator = wxDefaultValidator,
             const wxString& name = wxListBoxNameStr);
+    bool Create(wxWindow *parent, wxWindowID winid,
+            const wxPoint& pos,
+            const wxSize& size,
+            const wxArrayString& choices,
+            long style = 0,
+            const wxValidator& validator = wxDefaultValidator,
+            const wxString& name = wxListBoxNameStr);
     virtual ~wxCheckListBox();
 
 // ------------------------------------------------------------------------