From: Robin Dunn Date: Thu, 11 Nov 2010 01:29:14 +0000 (+0000) Subject: Fix a parameter type and add some missing const keywords X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/033b1b94130087b9a36cf8815ae42d7a347e16c0 Fix a parameter type and add some missing const keywords git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66116 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/wx/gdicmn.h b/interface/wx/gdicmn.h index 3a7d1acfc9..307a202e5f 100644 --- a/interface/wx/gdicmn.h +++ b/interface/wx/gdicmn.h @@ -623,7 +623,7 @@ public: @since 2.9.2 */ - void SetDefaults(const wxSize& sizeDefault); + void SetDefaults(const wxPoint& pt); //@} /** @@ -640,7 +640,7 @@ public: /** Global instance of a wxPoint initialized with values (-1,-1). */ -wxPoint wxDefaultPosition; +const wxPoint wxDefaultPosition; /** @@ -948,7 +948,7 @@ public: /** Global instance of a wxSize object initialized to (-1,-1). */ -wxSize wxDefaultSize; +const wxSize wxDefaultSize;