From 4f6c584bacc8c3c694228f36ada3de77a76614a6 Mon Sep 17 00:00:00 2001 From: tpearson Date: Mon, 30 Aug 2010 07:52:23 +0000 Subject: * 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 --- libkcal/calendarresources.cpp | 45 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) (limited to 'libkcal/calendarresources.cpp') diff --git a/libkcal/calendarresources.cpp b/libkcal/calendarresources.cpp index 94ce0ca3..42f618dc 100644 --- a/libkcal/calendarresources.cpp +++ b/libkcal/calendarresources.cpp @@ -204,6 +204,51 @@ void CalendarResources::close() } } +void CalendarResources::closeEvents() +{ + kdDebug(5800) << "CalendarResources::close" << endl; + + if ( mOpen ) { + CalendarResourceManager::ActiveIterator it; + for ( it = mManager->activeBegin(); it != mManager->activeEnd(); ++it ) { + (*it)->close(); + } + + setModified( false ); + mOpen = false; + } +} + +void CalendarResources::closeTodos() +{ + kdDebug(5800) << "CalendarResources::close" << endl; + + if ( mOpen ) { + CalendarResourceManager::ActiveIterator it; + for ( it = mManager->activeBegin(); it != mManager->activeEnd(); ++it ) { + (*it)->close(); + } + + setModified( false ); + mOpen = false; + } +} + +void CalendarResources::closeJournals() +{ + kdDebug(5800) << "CalendarResources::close" << endl; + + if ( mOpen ) { + CalendarResourceManager::ActiveIterator it; + for ( it = mManager->activeBegin(); it != mManager->activeEnd(); ++it ) { + (*it)->close(); + } + + setModified( false ); + mOpen = false; + } +} + void CalendarResources::save() { kdDebug(5800) << "CalendarResources::save()" << endl; -- cgit v1.2.3