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
This commit is contained in:
@@ -383,12 +383,6 @@ public:
|
|||||||
it lit = i->m_iter;
|
it lit = i->m_iter;
|
||||||
return citer( i->m_hash, ++lit );
|
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 )
|
void SetData( wxObject* e )
|
||||||
{
|
{
|
||||||
citer* i = (citer*)this;
|
citer* i = (citer*)this;
|
||||||
|
Reference in New Issue
Block a user