From 684d26bb27e3c0072ef947c2aa45dd863353d7cf Mon Sep 17 00:00:00 2001 From: Mattia Barbon Date: Thu, 24 Jul 2003 19:29:42 +0000 Subject: [PATCH] Removed (wrong) wxHashTable::compatibility_iterator::GetPrevious 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 | 6 ------ 1 file changed, 6 deletions(-) diff --git a/include/wx/hash.h b/include/wx/hash.h index 280c91e83e..cc03625dc4 100644 --- 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; -- 2.45.2