From: Jaakko Salli Date: Fri, 17 Dec 2010 11:50:54 +0000 (+0000) Subject: Add enough default arguments to one wxOwnerDrawnComboBox ctor so it can be consructed... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/94daedc804d0f7b8f2899bb8ad19bf916cdde887 Add enough default arguments to one wxOwnerDrawnComboBox ctor so it can be consructed using only two arguments, same as the wxComboBox git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66396 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/odcombo.h b/include/wx/odcombo.h index 2dc15d4058..706d04e2ba 100644 --- a/include/wx/odcombo.h +++ b/include/wx/odcombo.h @@ -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);