diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/kpilotdevicelink.cc | 2 | ||||
-rw-r--r-- | lib/plugin.cc | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/kpilotdevicelink.cc b/lib/kpilotdevicelink.cc index bd751c2..54fa84a 100644 --- a/lib/kpilotdevicelink.cc +++ b/lib/kpilotdevicelink.cc @@ -234,7 +234,7 @@ bool DeviceCommThread::open(const TQString &device) fTempSocket = (-1); link()->fRealPilotPath - = KStandardDirs::realFilePath(device.isEmpty() ? link()->fPilotPath : device); + = TDEStandardDirs::realFilePath(device.isEmpty() ? link()->fPilotPath : device); if ( !DeviceMap::self()->canBind(link()->fRealPilotPath) ) { 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; |