-rw-r--r-- | kabc/addressbook.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/kabc/addressbook.h b/kabc/addressbook.h index 253de68..2f2678b 100644 --- a/kabc/addressbook.h +++ b/kabc/addressbook.h | |||
@@ -280,27 +280,28 @@ class AddressBook : public QObject | |||
280 | 280 | ||
281 | /** | 281 | /** |
282 | Shows gui independend error messages. | 282 | Shows gui independend error messages. |
283 | */ | 283 | */ |
284 | void error( const QString& ); | 284 | void error( const QString& ); |
285 | 285 | ||
286 | /** | 286 | /** |
287 | Query all resources to clean up their lock files | 287 | Query all resources to clean up their lock files |
288 | */ | 288 | */ |
289 | void cleanUp(); | 289 | void cleanUp(); |
290 | 290 | ||
291 | // sync stuff | 291 | // sync stuff |
292 | Addressee::List getExternLastSyncAddressees(); | 292 | //Addressee::List getExternLastSyncAddressees(); |
293 | void resetTempSyncStat(); | 293 | void resetTempSyncStat(); |
294 | QStringList uidList(); | 294 | QStringList uidList(); |
295 | void removeDeletedAddressees(); | ||
295 | 296 | ||
296 | 297 | ||
297 | signals: | 298 | signals: |
298 | /** | 299 | /** |
299 | Emitted, when the address book has changed on disk. | 300 | Emitted, when the address book has changed on disk. |
300 | */ | 301 | */ |
301 | void addressBookChanged( AddressBook * ); | 302 | void addressBookChanged( AddressBook * ); |
302 | 303 | ||
303 | /** | 304 | /** |
304 | Emitted, when the address book has been locked for writing. | 305 | Emitted, when the address book has been locked for writing. |
305 | */ | 306 | */ |
306 | void addressBookLocked( AddressBook * ); | 307 | void addressBookLocked( AddressBook * ); |
@@ -315,20 +316,21 @@ class AddressBook : public QObject | |||
315 | void setStandardResource( Resource * ); | 316 | void setStandardResource( Resource * ); |
316 | Resource *standardResource(); | 317 | Resource *standardResource(); |
317 | KRES::Manager<Resource> *resourceManager(); | 318 | KRES::Manager<Resource> *resourceManager(); |
318 | 319 | ||
319 | void init(const QString &config, const QString &family); | 320 | void init(const QString &config, const QString &family); |
320 | 321 | ||
321 | private: | 322 | private: |
322 | //US QPtrList<Resource> mDummy; // Remove in KDE 4 | 323 | //US QPtrList<Resource> mDummy; // Remove in KDE 4 |
323 | 324 | ||
324 | 325 | ||
325 | struct AddressBookData; | 326 | struct AddressBookData; |
326 | AddressBookData *d; | 327 | AddressBookData *d; |
328 | bool blockLSEchange; | ||
327 | }; | 329 | }; |
328 | 330 | ||
329 | QDataStream &operator<<( QDataStream &, const AddressBook & ); | 331 | QDataStream &operator<<( QDataStream &, const AddressBook & ); |
330 | QDataStream &operator>>( QDataStream &, AddressBook & ); | 332 | QDataStream &operator>>( QDataStream &, AddressBook & ); |
331 | 333 | ||
332 | } | 334 | } |
333 | 335 | ||
334 | #endif | 336 | #endif |