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
This commit is contained in:
Robin Dunn
2010-11-11 01:29:14 +00:00
parent 87f528f15b
commit 033b1b9413

View File

@@ -623,7 +623,7 @@ public:
@since 2.9.2 @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). 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). Global instance of a wxSize object initialized to (-1,-1).
*/ */
wxSize wxDefaultSize; const wxSize wxDefaultSize;