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
This commit is contained in:
Stefano D. Mtangoo 2017-06-29 18:17:01 +03:00 committed by VZ
parent 94ebaca432
commit 2971930ab8

View File

@ -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()
// ----------------------------------------------------------------------------