removed obsolete EvolutionSyncSource::get*ItemKey() methods

This commit is contained in:
Patrick Ohly 2009-04-29 16:54:32 +02:00
parent e66da14766
commit 5057c38364
2 changed files with 0 additions and 9 deletions

View file

@ -70,8 +70,6 @@ public:
virtual SyncItem* getNextUpdatedItem() throw () { return m_source->getNextUpdatedItem(); }
virtual SyncItem* getFirstDeletedItem() throw () { return m_source->getFirstDeletedItem(); }
virtual SyncItem* getNextDeletedItem() throw () { return m_source->getNextDeletedItem(); }
virtual SyncItem* getFirstItemKey() throw () { return m_source->getFirstItemKey(); }
virtual SyncItem* getNextItemKey() throw () { return m_source->getNextItemKey(); }
virtual SyncMLStatus addItem(SyncItem& item) throw () { return m_source->addItem(item); }
virtual SyncMLStatus updateItem(SyncItem& item) throw () { return m_source->updateItem(item); }

View file

@ -530,11 +530,6 @@ class EvolutionSyncSource : public EvolutionSyncSourceConfig, public LoggerBase,
/**
* @name default implementation of SyncSource iterators
*
* @todo getFirstItemKey() and getNextItemKey() are marked for removal
* and will be replaced by removeAllItems(). Remove the calls when
* they are no longer needed. In the meantime implement them with
* m_allItems.
*/
/**@{*/
virtual SyncItem* getFirstItem() throw() { return m_allItems.start(); }
@ -545,8 +540,6 @@ class EvolutionSyncSource : public EvolutionSyncSourceConfig, public LoggerBase,
virtual SyncItem* getNextUpdatedItem() throw() { return m_updatedItems.iterate(); }
virtual SyncItem* getFirstDeletedItem() throw() { return m_deletedItems.start(); }
virtual SyncItem* getNextDeletedItem() throw() { return m_deletedItems.iterate(); }
virtual SyncItem* getFirstItemKey() throw() { return m_allItems.start(); }
virtual SyncItem* getNextItemKey() throw() { return m_allItems.iterate(); }
/**@}*/
/**