From 239e6af724de1df0cfc338a927417650d1d8b39b Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 8 Apr 2012 10:10:20 +0000 Subject: [PATCH] Fix PCH-less compilation of graphicc.cpp under MSW too. We need to include wx/window.h in all ports, not just wxGTK. See #14194. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71148 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/graphicc.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/generic/graphicc.cpp b/src/generic/graphicc.cpp index 4dae80da49..76efcf4b2a 100644 --- a/src/generic/graphicc.cpp +++ b/src/generic/graphicc.cpp @@ -33,9 +33,7 @@ #include "wx/dcclient.h" #include "wx/dcmemory.h" #include "wx/dcprint.h" - #ifdef __WXGTK__ - #include "wx/window.h" - #endif + #include "wx/window.h" #endif #include "wx/private/graphics.h"