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.
This commit is contained in:
Vadim Zeitlin
2015-07-05 17:49:05 +02:00
parent 610076aabd
commit 6c43aa90b6
2 changed files with 1 additions and 1 deletions

View File

@@ -22,7 +22,6 @@
#ifndef WX_PRECOMP
#include "wx/string.h"
#include "wx/app.h"
#endif
#include "wx/tokenzr.h"

View File

@@ -21,6 +21,7 @@
#include "wx/protocol/log.h"
#ifndef WX_PRECOMP
#include "wx/app.h"
#include "wx/module.h"
#endif