From: Stefan Csomor Date: Mon, 28 Jul 2003 20:15:59 +0000 (+0000) Subject: Added Setter for Position (consistency) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/38759b67942091819c0737676941e3fb92745c3d Added Setter for Position (consistency) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22356 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/window.h b/include/wx/window.h index 596dadc0a4..d61eac27d8 100644 --- a/include/wx/window.h +++ b/include/wx/window.h @@ -219,6 +219,8 @@ public: return wxPoint(w, h); } + void SetPosition( const wxPoint& pt ) { Move( pt ) ; } + void GetSize( int *w, int *h ) const { DoGetSize(w, h); } wxSize GetSize() const {