Make GetEffectiveMinSize virtual as not being able to override the method, which the sizer system depends on, is inflexible

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58513 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2009-01-30 09:37:14 +00:00
parent fc50ab9081
commit a20a357d92
2 changed files with 5 additions and 2 deletions

View File

@@ -708,10 +708,13 @@ public:
Merges the window's best size into the min size and returns the result.
This is the value used by sizers to determine the appropriate
ammount of space to allocate for the widget.
This is the method called by any wxSizer when they query the size
of a certain window or control.
@see GetBestSize(), SetInitialSize(), @ref overview_windowsizing
*/
wxSize GetEffectiveMinSize() const;
virtual wxSize GetEffectiveMinSize() const;
/**
Returns the maximum size of window's client area.