From 5d5d6e84cbaf62a3820929330202c3568e853b7d Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 20 Mar 2015 01:39:48 +0100 Subject: [PATCH] Compilation fix for PCH-less build after bc492a9. Include wx/dcscreen.h explicitly now that it is used in the default wxWindow::GetContentScaleFactor() implementation. --- src/common/wincmn.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/wincmn.cpp b/src/common/wincmn.cpp index 7489fdfd9f..29ae222d3c 100644 --- a/src/common/wincmn.cpp +++ b/src/common/wincmn.cpp @@ -42,6 +42,7 @@ #include "wx/statusbr.h" #include "wx/toolbar.h" #include "wx/dcclient.h" + #include "wx/dcscreen.h" #include "wx/scrolbar.h" #include "wx/layout.h" #include "wx/sizer.h"