projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
only remove from parent if not content view, fixes #13068
[wxWidgets.git]
/
src
/
common
/
hash.cpp
diff --git
a/src/common/hash.cpp
b/src/common/hash.cpp
index 1e36fec843fbd3b6720f59059872922bd1f54327..8c7049b6b4f391a61ab60b87cf04ecd1274a6a6c 100644
(file)
--- a/
src/common/hash.cpp
+++ b/
src/common/hash.cpp
@@
-135,9
+135,7
@@
void wxHashTableBase::Destroy()
{
Clear();
- delete[] m_table;
-
- m_table = NULL;
+ wxDELETEA(m_table);
m_size = 0;
}