Fix Unix build when using precompiled headers

In a twist on the usual theme, the previous commits broke the Unix build
when _using_ PCH because wx/textcompleter.h was only included from
inside "#ifndef WX_PRECOMP" check, but it needs to be always included as
wx/wx.h doesn't include it.
This commit is contained in:
Vadim Zeitlin 2018-01-27 11:55:37 +01:00
parent a14a3de5ce
commit a6eb4c8e64

View File

@ -28,10 +28,11 @@
#include "wx/event.h"
#include "wx/textentry.h"
#include "wx/textctrl.h"
#include "wx/textcompleter.h"
#include "wx/window.h"
#endif //WX_PRECOMP
#include "wx/textcompleter.h"
#include <gtk/gtk.h>
#include "wx/gtk/private.h"
#include "wx/gtk/private/gtk2-compat.h"