From: Vadim Zeitlin Date: Mon, 21 Mar 2011 11:00:03 +0000 (+0000) Subject: Fix wxMSW build without PCH after recent wxPanel changes. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/55a40ad970a1ac4f6d1457a441be4d83445efb74 Fix wxMSW build without PCH after recent wxPanel changes. Add missing include of wx/bitmap.h in !WX_PRECOMP case. Closes #13060. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67269 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/panel.cpp b/src/msw/panel.cpp index bc73d1267a..5dc1bfcf5a 100644 --- a/src/msw/panel.cpp +++ b/src/msw/panel.cpp @@ -24,6 +24,7 @@ #endif #ifndef WX_PRECOMP + #include "wx/bitmap.h" #include "wx/brush.h" #include "wx/panel.h" #endif // WX_PRECOMP