summaryrefslogtreecommitdiffstats
path: root/libkcal/resourcelocaldir.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libkcal/resourcelocaldir.cpp')
-rw-r--r--libkcal/resourcelocaldir.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libkcal/resourcelocaldir.cpp b/libkcal/resourcelocaldir.cpp
index 5ca0518e..730f3abd 100644
--- a/libkcal/resourcelocaldir.cpp
+++ b/libkcal/resourcelocaldir.cpp
@@ -127,13 +127,13 @@ bool ResourceLocalDir::doLoad()
mCalendar.close();
TQString dirName = mURL.path();
- if ( !( KStandardDirs::exists( dirName ) || KStandardDirs::exists( dirName + "/") ) ) {
+ if ( !( TDEStandardDirs::exists( dirName ) || TDEStandardDirs::exists( dirName + "/") ) ) {
kdDebug(5800) << "ResourceLocalDir::load(): Directory '" << dirName
<< "' doesn't exist yet. Creating it..." << endl;
// Create the directory. Use 0775 to allow group-writable if the umask
// allows it (permissions will be 0775 & ~umask). This is desired e.g. for
// group-shared directories!
- return KStandardDirs::makeDir( dirName, 0775 );
+ return TDEStandardDirs::makeDir( dirName, 0775 );
}
// The directory exists. Now try to open (the files in) it.