From 1c4743aa20d9a4e8bac0a01409335e810d9b58a1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?W=C5=82odzimierz=20Skiba?= Date: Wed, 24 May 2006 09:44:56 +0000 Subject: [PATCH] [ 1493780 ] wxOwnerDrawnComboBox warnings fixes. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39313 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/odcombo.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/wx/odcombo.h b/include/wx/odcombo.h index 3c960cb4ee..e04aeaa062 100644 --- a/include/wx/odcombo.h +++ b/include/wx/odcombo.h @@ -208,7 +208,7 @@ public: bool Create(wxWindow *parent, wxWindowID id, - const wxString& value, + const wxString& value = wxEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0, @@ -227,11 +227,11 @@ public: bool Create(wxWindow *parent, wxWindowID id, - const wxString& value = wxEmptyString, - const wxPoint& pos = wxDefaultPosition, - const wxSize& size = wxDefaultSize, - int n = 0, - const wxString choices[] = (const wxString *) NULL, + const wxString& value, + const wxPoint& pos, + const wxSize& size, + int n, + const wxString choices[], long style = 0, const wxValidator& validator = wxDefaultValidator, const wxString& name = wxComboBoxNameStr); -- 2.47.2