From c697b62d461fa3ba0794fac2387ad6b75a2f133f Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 25 Dec 2017 19:29:25 +0100 Subject: [PATCH] Compilation fix for PCH-less build after last commit Include the headers required by the new code in src/msw/textentry.cpp. See #12613. --- src/msw/textentry.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/msw/textentry.cpp b/src/msw/textentry.cpp index 46246846ca..3acd21fff1 100644 --- a/src/msw/textentry.cpp +++ b/src/msw/textentry.cpp @@ -24,7 +24,9 @@ #ifndef WX_PRECOMP #include "wx/arrstr.h" + #include "wx/event.h" #include "wx/string.h" + #include "wx/textctrl.h" // Only for wxTE_PROCESS_XXX constants #endif // WX_PRECOMP #if wxUSE_TEXTCTRL || wxUSE_COMBOBOX