From: Mattia Barbon Date: Thu, 24 Jul 2003 19:29:42 +0000 (+0000) Subject: Removed (wrong) wxHashTable::compatibility_iterator::GetPrevious X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/684d26bb27e3c0072ef947c2aa45dd863353d7cf 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 --- 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;