summaryrefslogtreecommitdiffstats
path: root/libkcal/calendar.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-30 07:52:23 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-30 07:52:23 +0000
commit4f6c584bacc8c3c694228f36ada3de77a76614a6 (patch)
treea4b40426f0bce6016a20b6f657fe588dfca9ff0f /libkcal/calendar.h
parent5572a114be163aeae75648f8e82ce692d4a77517 (diff)
downloadtdepim-4f6c584bacc8c3c694228f36ada3de77a76614a6.tar.gz
tdepim-4f6c584bacc8c3c694228f36ada3de77a76614a6.zip
* Fixed CalDAV tasks loading when event loading fails
* Added calendar control functions to allow for a partial cache clear of only events, todos, or journals git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1169887 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkcal/calendar.h')
-rw-r--r--libkcal/calendar.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/libkcal/calendar.h b/libkcal/calendar.h
index 4c6c0f98..a53ef5a0 100644
--- a/libkcal/calendar.h
+++ b/libkcal/calendar.h
@@ -285,6 +285,21 @@ class LIBKCAL_EXPORT Calendar : public TQObject, public CustomProperties,
virtual void close() = 0;
/**
+ Clears out the current Calendar, freeing all used memory etc.
+ */
+ virtual void closeEvents() = 0;
+
+ /**
+ Clears out the current Calendar, freeing all used memory etc.
+ */
+ virtual void closeTodos() = 0;
+
+ /**
+ Clears out the current Calendar, freeing all used memory etc.
+ */
+ virtual void closeJournals() = 0;
+
+ /**
Sync changes in memory to persistant storage.
*/
virtual void save() = 0;