From 83489d6ca11379528f97de7dd49a5c2f5f450fab Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 28 Jun 2016 15:38:49 +0200 Subject: [PATCH] Fix PCH-less build after the previous commit Include wx/textctrl.h to get wxTE_PASSWORD definition. --- src/common/textentrycmn.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/textentrycmn.cpp b/src/common/textentrycmn.cpp index 642fb9bd04..3ab0b2ab87 100644 --- a/src/common/textentrycmn.cpp +++ b/src/common/textentrycmn.cpp @@ -27,6 +27,7 @@ #ifndef WX_PRECOMP #include "wx/window.h" #include "wx/dataobj.h" + #include "wx/textctrl.h" // Only needed for wxTE_PASSWORD. #endif //WX_PRECOMP #include "wx/textentry.h"