From: Vadim Zeitlin Date: Thu, 5 Jun 2008 13:47:32 +0000 (+0000) Subject: compilation fix for --disable-filesystem --enable-xrc build (wxArrayString is needed... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7f5b84c22f5abd2a8b035da715fc86baa4db7d3d compilation fix for --disable-filesystem --enable-xrc build (wxArrayString is needed here and was only included indirectly via wx/filesys.h) (ticket #9537) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53985 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/xrc/xmlres.h b/include/wx/xrc/xmlres.h index 6146f5956f..9321e4c186 100644 --- a/include/wx/xrc/xmlres.h +++ b/include/wx/xrc/xmlres.h @@ -17,6 +17,7 @@ #include "wx/string.h" #include "wx/dynarray.h" +#include "wx/arrstr.h" #include "wx/datetime.h" #include "wx/list.h" #include "wx/gdicmn.h"