make DoSetSizeHints protected, remove parameter defaults
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50145 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -417,10 +417,6 @@ public:
|
||||
const wxSize& incSize=wxDefaultSize)
|
||||
{ DoSetSizeHints(minSize.x, minSize.y, maxSize.x, maxSize.y, incSize.x, incSize.y); }
|
||||
|
||||
virtual void DoSetSizeHints( int minW, int minH,
|
||||
int maxW, int maxH,
|
||||
int incW, int incH );
|
||||
|
||||
// Methods for setting virtual size hints
|
||||
// FIXME: What are virtual size hints?
|
||||
|
||||
@@ -1495,6 +1491,10 @@ protected:
|
||||
// same as DoSetSize() for the client size
|
||||
virtual void DoSetClientSize(int width, int height) = 0;
|
||||
|
||||
virtual void DoSetSizeHints( int minW, int minH,
|
||||
int maxW, int maxH,
|
||||
int incW, int incH );
|
||||
|
||||
// move the window to the specified location and resize it: this is called
|
||||
// from both DoSetSize() and DoSetClientSize() and would usually just
|
||||
// reposition this window except for composite controls which will want to
|
||||
|
Reference in New Issue
Block a user