]> git.saurik.com Git - wxWidgets.git/commitdiff
Add enough default arguments to one wxOwnerDrawnComboBox ctor so it can be consructed...
authorJaakko Salli <jaakko.salli@dnainternet.net>
Fri, 17 Dec 2010 11:50:54 +0000 (11:50 +0000)
committerJaakko Salli <jaakko.salli@dnainternet.net>
Fri, 17 Dec 2010 11:50:54 +0000 (11:50 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66396 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/odcombo.h

index 2dc15d4058a08079e21f8d046e9e70a845107a12..706d04e2ba73daa4e7ce48468b4df735b6a3db3e 100644 (file)
@@ -272,11 +272,11 @@ public:
 
     wxOwnerDrawnComboBox(wxWindow *parent,
                          wxWindowID id,
-                         const wxString& value,
-                         const wxPoint& pos,
-                         const wxSize& size,
-                         const wxArrayString& choices,
-                         long style,
+                         const wxString& value = wxEmptyString,
+                         const wxPoint& pos = wxDefaultPosition,
+                         const wxSize& size = wxDefaultSize,
+                         const wxArrayString& choices = wxArrayString(),
+                         long style = 0,
                          const wxValidator& validator = wxDefaultValidator,
                          const wxString& name = wxComboBoxNameStr);