From: David Elliott Date: Fri, 30 Sep 2005 16:39:41 +0000 (+0000) Subject: Needed to add #include "wx/statusbr.h" to know that wxStatusBar is derived X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/38c8fce8c4348a61a1e55da13142b84e44924845 Needed to add #include "wx/statusbr.h" to know that wxStatusBar is derived from wxWindow for valid pointer comparison. Went ahead and moved some includes into new ifndef WX_PRECOMP section to improve compilation speed when using precompiled headers. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35768 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/mac/carbon/mdi.cpp b/src/mac/carbon/mdi.cpp index 84a4c6c489..c3951ca0e1 100644 --- a/src/mac/carbon/mdi.cpp +++ b/src/mac/carbon/mdi.cpp @@ -13,10 +13,13 @@ #if wxUSE_MDI -#include "wx/mdi.h" -#include "wx/menu.h" -#include "wx/settings.h" -#include "wx/log.h" +#ifndef WX_PRECOMP + #include "wx/mdi.h" + #include "wx/log.h" + #include "wx/menu.h" + #include "wx/settings.h" + #include "wx/statusbr.h" +#endif #include "wx/mac/private.h" #include "wx/mac/uma.h"