From 21263b8c224f804a5e23eb57b617477dc652d09d Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 27 Aug 2018 18:13:47 +0200 Subject: [PATCH] Fix wrong DLL in the declaration of wxPendingDelete This object is defined in "base", not "core". Somehow this still worked before, but it was still wrong and stopped working when taskbarcmn.cpp was moved to "core" itself from "adv". --- src/common/taskbarcmn.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/taskbarcmn.cpp b/src/common/taskbarcmn.cpp index 5a8a7728d4..cc5908ad06 100644 --- a/src/common/taskbarcmn.cpp +++ b/src/common/taskbarcmn.cpp @@ -25,7 +25,7 @@ #include "wx/menu.h" #endif -extern WXDLLIMPEXP_DATA_CORE(wxList) wxPendingDelete; +extern WXDLLIMPEXP_DATA_BASE(wxList) wxPendingDelete; // DLL options compatibility check: WX_CHECK_BUILD_OPTIONS("wxAdvanced")