From: David Webster Date: Wed, 15 Nov 2000 16:52:53 +0000 (+0000) Subject: Need to define wxArrayGenericTreeItems as WX_DEFINE_WXPORTED_ARRAY instead of just... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/8a985b8492ce482b21a4bdd1220c1e4484ee24e9?ds=inline Need to define wxArrayGenericTreeItems as WX_DEFINE_WXPORTED_ARRAY instead of just WX_DEFINE_ARRAY to prevent msw .dll builds from complaining. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8739 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/treectlg.cpp b/src/generic/treectlg.cpp index 5adea43870..0a49c02a4c 100644 --- a/src/generic/treectlg.cpp +++ b/src/generic/treectlg.cpp @@ -44,7 +44,7 @@ class WXDLLEXPORT wxGenericTreeItem; -WX_DEFINE_ARRAY(wxGenericTreeItem *, wxArrayGenericTreeItems); +WX_DEFINE_EXPORTED_ARRAY(wxGenericTreeItem *, wxArrayGenericTreeItems); //WX_DEFINE_OBJARRAY(wxArrayTreeItemIds); // ----------------------------------------------------------------------------