diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 13:29:09 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 13:29:09 -0600 |
commit | f2225fc1f936c1d9e6a5570a63ffe12c366176bf (patch) | |
tree | cf0b7f61bb88ea0a2e155d4cffeeb4eaaa8549dd /libkcal/resourcecached.cpp | |
parent | 0922423eb834afb70e3323db43062cf4083dc298 (diff) | |
download | tdepim-f2225fc1f936c1d9e6a5570a63ffe12c366176bf.tar.gz tdepim-f2225fc1f936c1d9e6a5570a63ffe12c366176bf.zip |
Rename KStandard for enhanced compatibility with KDE4
Diffstat (limited to 'libkcal/resourcecached.cpp')
-rw-r--r-- | libkcal/resourcecached.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libkcal/resourcecached.cpp b/libkcal/resourcecached.cpp index 5be335e96..13d11be04 100644 --- a/libkcal/resourcecached.cpp +++ b/libkcal/resourcecached.cpp @@ -304,7 +304,7 @@ void ResourceCached::loadCache() setIdMapperIdentifier(); mIdMapper.load(); - if ( KStandardDirs::exists( cacheFile() ) ) { + if ( TDEStandardDirs::exists( cacheFile() ) ) { mCalendar.load( cacheFile() ); if ( readOnly() ) { Incidence::List incidences( rawIncidences() ); @@ -355,7 +355,7 @@ void ResourceCached::cleanUpEventCache( const Event::List &eventList ) { CalendarLocal calendar ( TQString::fromLatin1( "UTC" ) ); - if ( KStandardDirs::exists( cacheFile() ) ) + if ( TDEStandardDirs::exists( cacheFile() ) ) calendar.load( cacheFile() ); else return; @@ -384,7 +384,7 @@ void ResourceCached::cleanUpTodoCache( const Todo::List &todoList ) { CalendarLocal calendar ( TQString::fromLatin1( "UTC" ) ); - if ( KStandardDirs::exists( cacheFile() ) ) + if ( TDEStandardDirs::exists( cacheFile() ) ) calendar.load( cacheFile() ); else return; @@ -457,7 +457,7 @@ void ResourceCached::loadChangesCache( TQMap<Incidence*, bool> &map, const TQStr { CalendarLocal calendar ( TQString::fromLatin1( "UTC" ) ); - if ( KStandardDirs::exists( changesCacheFile( type ) ) ) + if ( TDEStandardDirs::exists( changesCacheFile( type ) ) ) calendar.load( changesCacheFile( type ) ); else return; |