From: Vadim Zeitlin Date: Thu, 17 Mar 2005 22:19:50 +0000 (+0000) Subject: removed just added UnsetVirtualSize(), it's not needed finally X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e731c9ada2e8b2954ae386f041685dab7adc3e2f removed just added UnsetVirtualSize(), it's not needed finally git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32869 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/window.h b/include/wx/window.h index 13b6235675..06b9ad44d4 100644 --- a/include/wx/window.h +++ b/include/wx/window.h @@ -411,9 +411,6 @@ public: void SetVirtualSize( const wxSize &size ) { DoSetVirtualSize( size.x, size.y ); } void SetVirtualSize( int x, int y ) { DoSetVirtualSize( x, y ); } - // this is necessary to forget about previously set virtual size - void UnsetVirtualSize() { m_virtualSize = wxDefaultSize; } - wxSize GetVirtualSize() const { return DoGetVirtualSize(); } void GetVirtualSize( int *x, int *y ) const {