changed ShowWithEffects() to use directional wxSHOW_EFFECT_XXX flags instead of additional wxDirection argument that doesn't always make sense; this also means the direction is never implicit
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53499 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -61,16 +61,14 @@ public:
|
||||
|
||||
virtual bool Show(bool show = true);
|
||||
virtual bool ShowWithEffect(wxShowEffect effect,
|
||||
unsigned timeout = 0,
|
||||
wxDirection dir = wxBOTTOM)
|
||||
unsigned timeout = 0)
|
||||
{
|
||||
return MSWShowWithEffect(true, effect, timeout, dir);
|
||||
return MSWShowWithEffect(true, effect, timeout);
|
||||
}
|
||||
virtual bool HideWithEffect(wxShowEffect effect,
|
||||
unsigned timeout = 0,
|
||||
wxDirection dir = wxBOTTOM)
|
||||
unsigned timeout = 0)
|
||||
{
|
||||
return MSWShowWithEffect(false, effect, timeout, dir);
|
||||
return MSWShowWithEffect(false, effect, timeout);
|
||||
}
|
||||
|
||||
virtual void SetFocus();
|
||||
@@ -431,8 +429,7 @@ public:
|
||||
// common part of Show/HideWithEffect()
|
||||
bool MSWShowWithEffect(bool show,
|
||||
wxShowEffect effect,
|
||||
unsigned timeout,
|
||||
wxDirection dir);
|
||||
unsigned timeout);
|
||||
|
||||
// Responds to colour changes: passes event on to children.
|
||||
void OnSysColourChanged(wxSysColourChangedEvent& event);
|
||||
|
Reference in New Issue
Block a user