From: George Tasker Date: Wed, 23 Feb 2000 12:31:59 +0000 (+0000) Subject: TablesInUse did not have DeleteContents() set to TRUE in __WXDEBUG__ mode X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a40860394c9ac8fd34fde8ee3f103b9d968457c2?ds=inline TablesInUse did not have DeleteContents() set to TRUE in __WXDEBUG__ mode git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6231 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/dbtable.cpp b/src/common/dbtable.cpp index 219aeec4fd..1cef849131 100644 --- a/src/common/dbtable.cpp +++ b/src/common/dbtable.cpp @@ -255,6 +255,7 @@ wxTable::~wxTable() #ifdef __WXDEBUG__ if (tableID) { + TablesInUse.DeleteContents(TRUE); bool found = FALSE; wxNode *pNode;