summaryrefslogtreecommitdiff
path: root/libopie
authoreilers <eilers>2002-11-01 15:09:04 (UTC)
committer eilers <eilers>2002-11-01 15:09:04 (UTC)
commita098735b8749ead08c658792cc31f95e73045107 (patch) (unidiff)
tree28bd5ee97878ff3dfc7aa0e6b0c0dcd511acd3f7 /libopie
parent3fbba334274ca53bd26cd79ccd4662e529c61f40 (diff)
downloadopie-a098735b8749ead08c658792cc31f95e73045107.zip
opie-a098735b8749ead08c658792cc31f95e73045107.tar.gz
opie-a098735b8749ead08c658792cc31f95e73045107.tar.bz2
Added remove
Diffstat (limited to 'libopie') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/pim/orecordlist.h34
1 files changed, 31 insertions, 3 deletions
diff --git a/libopie/pim/orecordlist.h b/libopie/pim/orecordlist.h
index e377447..2f4a5d3 100644
--- a/libopie/pim/orecordlist.h
+++ b/libopie/pim/orecordlist.h
@@ -91,3 +91,3 @@ public:
91 } 91 }
92 ORecordList( const QArray<int>& ids, 92ORecordList( const QArray<int>& ids,
93 const Base* ); 93 const Base* );
@@ -112,3 +112,8 @@ public:
112 int uidAt(uint i ); 112 int uidAt(uint i );
113 // FIXME implemenent remove 113
114 /**
115 * Remove the contact with given uid
116 */
117 bool remove( int uid );
118
114 /* 119 /*
@@ -161,3 +166,3 @@ template <class T>
161T ORecordListIterator<T>::operator*() { 166T ORecordListIterator<T>::operator*() {
162 qWarning("operator* %d %d", m_current, m_uids[m_current] ); 167 //qWarning("operator* %d %d", m_current, m_uids[m_current] );
163 if (!m_end ) 168 if (!m_end )
@@ -271,2 +276,25 @@ int ORecordList<T>::uidAt( uint i ) {
271} 276}
277
278template <class T>
279bool ORecordList<T>::remove( int uid ) {
280 QArray<int> copy( m_ids.count() );
281 int counter = 0;
282 bool ret_val = false;
283
284 for (uint i = 0; i < m_ids.count(); i++){
285 if ( m_ids[i] != uid ){
286 copy[counter++] = m_ids[i];
287
288 }else
289 ret_val = true;
290 }
291
292 copy.resize( counter );
293 m_ids = copy;
294
295
296 return ret_val;
297}
298
299
272#endif 300#endif