From 2971930ab8e4674827d7db8025d6f8fe6d348fef Mon Sep 17 00:00:00 2001 From: "Stefano D. Mtangoo" Date: Thu, 29 Jun 2017 18:17:01 +0300 Subject: [PATCH] Fix wx/textcompleter.h compilation when it's the first included header Explicitly include the required headers instead of relying on them being already included. Closes https://github.com/wxWidgets/wxWidgets/pull/513 --- include/wx/textcompleter.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/wx/textcompleter.h b/include/wx/textcompleter.h index cb21e913db..44f677f719 100644 --- a/include/wx/textcompleter.h +++ b/include/wx/textcompleter.h @@ -10,6 +10,9 @@ #ifndef _WX_TEXTCOMPLETER_H_ #define _WX_TEXTCOMPLETER_H_ +#include "wx/defs.h" +#include "wx/arrstr.h" + // ---------------------------------------------------------------------------- // wxTextCompleter: used by wxTextEnter::AutoComplete() // ----------------------------------------------------------------------------