]> git.saurik.com Git - wxWidgets.git/commitdiff
Removed (wrong) wxHashTable::compatibility_iterator::GetPrevious
authorMattia Barbon <mbarbon@cpan.org>
Thu, 24 Jul 2003 19:29:42 +0000 (19:29 +0000)
committerMattia 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

index 280c91e83eeba54e31d7a6d9b34db395989b12b1..cc03625dc4a41544de2e717914c4a40f760e93d0 100644 (file)
@@ -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;