X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9fcf8144d92ca5e0df8a148c520c7b33c0cf4901..bab4b13d392e0c9663c2c5a09f0dcbc77344ec05:/src/common/taskbarcmn.cpp diff --git a/src/common/taskbarcmn.cpp b/src/common/taskbarcmn.cpp index 08a5c86116..540dddaad9 100644 --- a/src/common/taskbarcmn.cpp +++ b/src/common/taskbarcmn.cpp @@ -16,13 +16,16 @@ #pragma hdrstop #endif -#ifdef wxHAS_TASK_BAR_ICON +#if wxUSE_TASKBARICON #ifndef WX_PRECOMP #include "wx/app.h" + #include "wx/list.h" #include "wx/menu.h" #endif +extern WXDLLIMPEXP_DATA_CORE(wxList) wxPendingDelete; + // DLL options compatibility check: WX_CHECK_BUILD_OPTIONS("wxAdvanced") @@ -51,4 +54,9 @@ void wxTaskBarIconBase::OnRightButtonDown(wxTaskBarIconEvent& WXUNUSED(event)) } } -#endif // defined(wxHAS_TASK_BAR_ICON) +void wxTaskBarIconBase::Destroy() +{ + wxPendingDelete.Append(this); +} + +#endif // wxUSE_TASKBARICON