From: Vadim Zeitlin Date: Tue, 12 Jun 2012 21:41:53 +0000 (+0000) Subject: Compilation fix in non-PCH build of wxMSW wxStaticBox. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/18717b27d61be93b3357fc5c374f8c14e38fd794 Compilation fix in non-PCH build of wxMSW wxStaticBox. Include wx/sizer.h now that we use sizers in static box DoGetBestSize(). Closes #14397. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71725 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/statbox.cpp b/src/msw/statbox.cpp index c86566cf0b..3bd2e55081 100644 --- a/src/msw/statbox.cpp +++ b/src/msw/statbox.cpp @@ -33,6 +33,7 @@ #include "wx/dcclient.h" #include "wx/dcmemory.h" #include "wx/image.h" + #include "wx/sizer.h" #endif #include "wx/notebook.h"