From 38759b67942091819c0737676941e3fb92745c3d Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Mon, 28 Jul 2003 20:15:59 +0000 Subject: [PATCH] Added Setter for Position (consistency) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22356 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/window.h | 2 ++ 1 file changed, 2 insertions(+) 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 { -- 2.47.2