From 2eabda7536ca50ea86a97c582139aa19e8e4071f Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 25 Oct 2013 12:17:25 +0000 Subject: [PATCH] Fix wxGrid compilation in some wxUSE_XXX=0 configurations. This header uses wxScopedPtr<> but didn't include the corresponding header, do it now as we can't always rely on this happening via the other headers as it does in the default build config. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@75058 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/generic/grideditors.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/wx/generic/grideditors.h b/include/wx/generic/grideditors.h index a81ab84c47..c45106d3e8 100644 --- a/include/wx/generic/grideditors.h +++ b/include/wx/generic/grideditors.h @@ -15,6 +15,8 @@ #if wxUSE_GRID +#include "wx/scopedptr.h" + class wxGridCellEditorEvtHandler : public wxEvtHandler { public: