projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
added a missing delete which resulted in a small memory leak on each wxExecute()...
[wxWidgets.git]
/
src
/
common
/
list.cpp
diff --git
a/src/common/list.cpp
b/src/common/list.cpp
index 26ace46fb5b4336265a0850f104e8c7d435d4f25..e51c3640211a2ed321e9673ef296352fcd76f82e 100644
(file)
--- a/
src/common/list.cpp
+++ b/
src/common/list.cpp
@@
-345,7
+345,7
@@
wxNodeBase *wxListBase::Find(const wxListKey& key) const
return (wxNodeBase *)NULL;
}
-wxNodeBase *wxListBase::Find(void *object) const
+wxNodeBase *wxListBase::Find(
const
void *object) const
{
for ( wxNodeBase *current = GetFirst(); current; current = current->GetNext() )
{