diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-30 07:52:23 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-30 07:52:23 +0000 |
commit | 4f6c584bacc8c3c694228f36ada3de77a76614a6 (patch) | |
tree | a4b40426f0bce6016a20b6f657fe588dfca9ff0f /libkcal/resourcecached.cpp | |
parent | 5572a114be163aeae75648f8e82ce692d4a77517 (diff) | |
download | tdepim-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/resourcecached.cpp')
-rw-r--r-- | libkcal/resourcecached.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libkcal/resourcecached.cpp b/libkcal/resourcecached.cpp index 155d24a0d..1a4e8b19e 100644 --- a/libkcal/resourcecached.cpp +++ b/libkcal/resourcecached.cpp @@ -321,6 +321,21 @@ void ResourceCached::clearCache() mCalendar.close(); } +void ResourceCached::clearEventsCache() +{ + mCalendar.closeEvents(); +} + +void ResourceCached::clearTodosCache() +{ + mCalendar.closeTodos(); +} + +void ResourceCached::clearJournalsCache() +{ + mCalendar.closeJournals(); +} + void ResourceCached::cleanUpEventCache( const Event::List &eventList ) { CalendarLocal calendar ( TQString::fromLatin1( "UTC" ) ); |