From 80f4c796428fb7fa5934a0b9305007f820b8eaac Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 27 Sep 2010 12:48:07 +0000 Subject: [PATCH] Fix wxX11 compilation when using PCH. wx/unix/utilsx11.h is not included by wx/wxprec.h so we need to include it when using PCH too. Closes #12517. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65655 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/x11/window.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/x11/window.cpp b/src/x11/window.cpp index a04296c7f9..7c2e5ae15b 100644 --- a/src/x11/window.cpp +++ b/src/x11/window.cpp @@ -47,7 +47,6 @@ #include "wx/layout.h" #include "wx/menuitem.h" #include "wx/module.h" - #include "wx/unix/utilsx11.h" #endif #include "wx/fontutil.h" @@ -57,6 +56,8 @@ #include "wx/dnd.h" #endif +#include "wx/unix/utilsx11.h" + #include "wx/x11/private.h" #include "X11/Xutil.h" -- 2.45.2