diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-06-23 02:32:10 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-06-23 02:32:10 +0000 |
commit | 672beaaffcce643b8ab17a191327caa771641a7e (patch) | |
tree | 4b4850b93992ba065767768c7f5ff2de2e3e6421 /kresources/carddav/job.h | |
parent | 23f5d4229caea32af49c007de85563158630b5d4 (diff) | |
download | tdepim-672beaaffcce643b8ab17a191327caa771641a7e.tar.gz tdepim-672beaaffcce643b8ab17a191327caa771641a7e.zip |
Major KAddressbook carddav fixes and improvements (should now work with Zimbra once Zimbra fixes a standards compliance issue with contact creation mimetypes)
Fixed handling of close events and save interaction with Kontact and Korganizer
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1141613 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kresources/carddav/job.h')
-rw-r--r-- | kresources/carddav/job.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/kresources/carddav/job.h b/kresources/carddav/job.h index 6d6f8a8ae..79e12f828 100644 --- a/kresources/carddav/job.h +++ b/kresources/carddav/job.h @@ -53,6 +53,13 @@ public: } /** + * Sets whether to use UID (false) or URI (true) as an object's unique identifier + */ + virtual void setUseURI(bool b) { + mUseURI = b; + } + + /** * Sets the parent qobject. */ virtual void setParent(QObject *s) { @@ -74,6 +81,13 @@ public: } /** + * @return whether to use UID (false) or URI (true) as an object's unique identifier + */ + virtual bool getUseURI() { + return mUseURI; + } + + /** * @return parent object */ virtual QObject *parent() { @@ -151,6 +165,7 @@ private: long mErrorNumber; QObject *mParent; int mType; + bool mUseURI; void enableCarddavDebug(runtime_info*); }; |