summaryrefslogtreecommitdiffstats
path: root/lib/plugin.cc
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2013-01-31 13:20:19 -0600
committerTimothy Pearson <[email protected]>2013-01-31 13:20:19 -0600
commitfc0196cdf6062125e587fbba536e78ea1f2d7f91 (patch)
treef896cfee60d61f50594e55c59c65c0e27920d118 /lib/plugin.cc
parent7a50d8810a790c1b936a6e61e0a10c8bb62bec51 (diff)
downloadkpilot-fc0196cdf6062125e587fbba536e78ea1f2d7f91.tar.gz
kpilot-fc0196cdf6062125e587fbba536e78ea1f2d7f91.zip
Rename KStandard for enhanced compatibility with KDE4
Diffstat (limited to 'lib/plugin.cc')
-rw-r--r--lib/plugin.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/plugin.cc b/lib/plugin.cc
index ed2ff90..715d29e 100644
--- a/lib/plugin.cc
+++ b/lib/plugin.cc
@@ -386,13 +386,13 @@ bool ConduitAction::openDatabases(const TQString &name, bool *retrieved)
TQFileInfo fi(dbpath);
TQString path(TQFileInfo(dbpath).dir(true).absPath());
if (!path.endsWith(CSL1("/"))) path.append(CSL1("/"));
- if (!KStandardDirs::exists(path))
+ if (!TDEStandardDirs::exists(path))
{
DEBUGKPILOT << fname << ": Trying to create path for database: <"
<< path << ">" << endl;
- KStandardDirs::makeDir(path);
+ TDEStandardDirs::makeDir(path);
}
- if (!KStandardDirs::exists(path))
+ if (!TDEStandardDirs::exists(path))
{
DEBUGKPILOT << fname << ": Database directory does not exist." << endl;
if (retrieved) *retrieved = false;