From 9db24be4967ca1c8cfa22bc6e3ea35be2ecb47f8 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 24 Feb 2016 22:57:19 +0100 Subject: [PATCH] Add missing headers to fix PCH-less wxQt build Just include the headers of the classes being used. --- src/qt/bitmap.cpp | 1 + src/qt/dcscreen.cpp | 1 + src/qt/uiaction.cpp | 1 + 3 files changed, 3 insertions(+) diff --git a/src/qt/bitmap.cpp b/src/qt/bitmap.cpp index 60417f44bf..b45171442d 100644 --- a/src/qt/bitmap.cpp +++ b/src/qt/bitmap.cpp @@ -22,6 +22,7 @@ #endif // WX_PRECOMP #include "wx/bitmap.h" +#include "wx/cursor.h" #include "wx/rawbmp.h" #include "wx/qt/private/converter.h" #include "wx/qt/private/utils.h" diff --git a/src/qt/dcscreen.cpp b/src/qt/dcscreen.cpp index d3986fdca7..b6e2adfc0f 100644 --- a/src/qt/dcscreen.cpp +++ b/src/qt/dcscreen.cpp @@ -13,6 +13,7 @@ #include #include +#include #include wxIMPLEMENT_ABSTRACT_CLASS(wxScreenDCImpl, wxWindowDCImpl); diff --git a/src/qt/uiaction.cpp b/src/qt/uiaction.cpp index 127843440e..67bfcfa5ec 100644 --- a/src/qt/uiaction.cpp +++ b/src/qt/uiaction.cpp @@ -13,6 +13,7 @@ #endif #include +#include #include "wx/qt/defs.h" #include "wx/qt/private/utils.h"