ShowWithEffect must call wxWindowBase::Show

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52565 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2008-03-16 11:10:40 +00:00
parent f286f23b70
commit 304435501b

View File

@@ -725,6 +725,9 @@ wxWindowMSW::MSWShowWithEffect(bool show,
unsigned timeout,
wxDirection dir)
{
if ( !wxWindowBase::Show(show) )
return false;
typedef BOOL (WINAPI *AnimateWindow_t)(HWND, DWORD, DWORD);
static AnimateWindow_t s_pfnAnimateWindow = NULL;