don't use deprecated wxIconizeEvent::Iconized()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@54348 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-06-24 23:42:43 +00:00
parent f95dc4d620
commit 6ad7799c0b

View File

@@ -344,11 +344,9 @@ void wxMDIParentFrame::OnIconized(wxIconizeEvent& event)
{
event.Skip();
if ( !event.Iconized() )
{
if ( !event.IsIconized() )
UpdateClientSize();
}
}
// Returns the active MDI child window
wxMDIChildFrame *wxMDIParentFrame::GetActiveChild() const