From 6c43aa90b6e2cf117c226e80dc6e28c3d3f974af Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 5 Jul 2015 17:49:05 +0200 Subject: [PATCH] Fix for PCH-less build of wxProtocol after recent changes. Include wx/app.h in protocol.cpp, don't include it in http.cpp which doesn't need it any more. See #17031. --- src/common/http.cpp | 1 - src/common/protocol.cpp | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/http.cpp b/src/common/http.cpp index 0ddfdbe673..38598d0aaf 100644 --- a/src/common/http.cpp +++ b/src/common/http.cpp @@ -22,7 +22,6 @@ #ifndef WX_PRECOMP #include "wx/string.h" - #include "wx/app.h" #endif #include "wx/tokenzr.h" diff --git a/src/common/protocol.cpp b/src/common/protocol.cpp index dc97f4fb3b..f6250252c3 100644 --- a/src/common/protocol.cpp +++ b/src/common/protocol.cpp @@ -21,6 +21,7 @@ #include "wx/protocol/log.h" #ifndef WX_PRECOMP + #include "wx/app.h" #include "wx/module.h" #endif