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".
This commit is contained in:
Vadim Zeitlin 2018-08-27 18:13:47 +02:00
parent 3ffa651a34
commit 21263b8c22

View File

@ -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")