From 635694c9b39d74cf3e3944cac5e565b96de56ef9 Mon Sep 17 00:00:00 2001 From: Tim Kosse Date: Sat, 12 Jul 2014 08:31:22 +0000 Subject: [PATCH] wxBitmapComboBoxBase uses wxArrayPtrVoid, so we need to #include "wx/dynarray.h". This fixes a compile error in situations where wx/dynarray.h is not implicitly included through other headers, e.g. when building wx with many features disabled. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76891 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/bmpcbox.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/wx/bmpcbox.h b/include/wx/bmpcbox.h index dd69525741..a5b9beeedb 100644 --- a/include/wx/bmpcbox.h +++ b/include/wx/bmpcbox.h @@ -17,6 +17,7 @@ #if wxUSE_BITMAPCOMBOBOX #include "wx/bitmap.h" +#include "wx/dynarray.h" class WXDLLIMPEXP_FWD_CORE wxWindow; class WXDLLIMPEXP_FWD_CORE wxItemContainer;