From 55a40ad970a1ac4f6d1457a441be4d83445efb74 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 21 Mar 2011 11:00:03 +0000 Subject: [PATCH] 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 --- src/msw/panel.cpp | 1 + 1 file changed, 1 insertion(+) 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 -- 2.50.0