From 7e297ee6670ade3f34dbec8a735a0a2b3c56e115 Mon Sep 17 00:00:00 2001 From: Artur Wieczorek Date: Sun, 23 Dec 2018 11:28:40 +0100 Subject: [PATCH] Compilation fix for PCH-less build Include the header required by newly implemented wxPGArrayEditorDialog::SetNewButtonText. --- include/wx/propgrid/props.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/wx/propgrid/props.h b/include/wx/propgrid/props.h index 1a94a422b5..1ebfb91699 100644 --- a/include/wx/propgrid/props.h +++ b/include/wx/propgrid/props.h @@ -797,6 +797,7 @@ wxValidator* PROPNAME::DoGetValidator () const \ #if wxUSE_EDITABLELISTBOX #include "wx/editlbox.h" +#include #define wxAEDIALOG_STYLE \ (wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER | wxOK | wxCANCEL | wxCENTRE)