From 072ce4576835bc9199a0628c8300023374354f95 Mon Sep 17 00:00:00 2001 From: Stefan Neis Date: Sun, 2 May 2004 15:25:44 +0000 Subject: [PATCH] Workaround for compile problem in IconizeChildFrames. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27064 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/os2/frame.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/os2/frame.cpp b/src/os2/frame.cpp index f5024c8eb4..d455626ed8 100644 --- a/src/os2/frame.cpp +++ b/src/os2/frame.cpp @@ -781,6 +781,10 @@ void wxFrame::IconizeChildFrames( bool bIconize ) { + // FIXME: Generic MDI does not use Frames for the Childs, so this does _not_ + // work. Possibly, the right thing is simply to eliminate this + // functions and all the calls to it from within this file. +#if 0 for (wxWindowList::Node* pNode = GetChildren().GetFirst(); pNode; pNode = pNode->GetNext() ) @@ -812,6 +816,7 @@ void wxFrame::IconizeChildFrames( pFrame->Iconize(bIconize); } } +#endif } // end of wxFrame::IconizeChildFrames WXHICON wxFrame::GetDefaultIcon() const