From: Vadim Zeitlin Date: Mon, 29 Sep 2003 12:05:49 +0000 (+0000) Subject: fixes in cleanup of DDE servers: don't delete them ourseleves (this is inconsistent... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/bd947cc9f002826c01e1413e36c5ae99fc6124a8 fixes in cleanup of DDE servers: don't delete them ourseleves (this is inconsistent with socket IPC classes); do check that they're all destroyed before DDE is shut down git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23994 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/dde.cpp b/src/msw/dde.cpp index 1ddd1a726d..72bf2a9230 100644 --- a/src/msw/dde.cpp +++ b/src/msw/dde.cpp @@ -194,8 +194,10 @@ extern void wxDDEInitialize() void wxDDECleanUp() { - WX_CLEAR_LIST(wxDDEClientList, wxDDEClientObjects); - WX_CLEAR_LIST(wxDDEServerList, wxDDEServerObjects); + // deleting them later won't work as DDE won't be initialized any more + wxASSERT_MSG( wxDDEServerObjects.empty() && + wxDDEClientObjects.empty(), + _T("all DDE objects should be deleted by now") ); wxAtomTable.clear();