projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ba7c420
)
Removed (wrong) wxHashTable::compatibility_iterator::GetPrevious
author
Mattia Barbon
<mbarbon@cpan.org>
Thu, 24 Jul 2003 19:29:42 +0000
(19:29 +0000)
committer
Mattia Barbon
<mbarbon@cpan.org>
Thu, 24 Jul 2003 19:29:42 +0000
(19:29 +0000)
implementation: hash table iterators are forward-only.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22277
c3d73ce0
-8a6f-49c7-b76d-
6d57e0e08775
include/wx/hash.h
patch
|
blob
|
blame
|
history
diff --git
a/include/wx/hash.h
b/include/wx/hash.h
index 280c91e83eeba54e31d7a6d9b34db395989b12b1..cc03625dc4a41544de2e717914c4a40f760e93d0 100644
(file)
--- a/
include/wx/hash.h
+++ b/
include/wx/hash.h
@@
-383,12
+383,6
@@
public:
it lit = i->m_iter;
return citer( i->m_hash, ++lit );
}
- citer GetPrevious() const
- {
- citer* i = (citer*)this;
- it lit = i->m_iter;
- return citer( i->m_hash, ++lit );
- }
void SetData( wxObject* e )
{
citer* i = (citer*)this;