Fix printing framework compilation with wxUSE_VALIDATORS=0

Include wx/textctrl.h, required here because wxTextCtrl is used as the
base class of wxPrintPageTextCtrl, explicitly instead of relying on it
being implicitly included by something else, as it happens in the
default build but not when validators are disabled.

Closes #19337.
This commit is contained in:
novak
2021-12-03 15:46:43 +01:00
committed by Vadim Zeitlin
parent c498d6d090
commit cb3f8f3a5c

View File

@@ -34,6 +34,7 @@
#include "wx/dcclient.h"
#include "wx/stattext.h"
#include "wx/intl.h"
#include "wx/textctrl.h"
#include "wx/textdlg.h"
#include "wx/sizer.h"
#include "wx/module.h"