Rename KStandard for enhanced compatibility with KDE4

pull/2/head
Timothy Pearson 12 years ago
parent 7a50d8810a
commit fc0196cdf6

@ -944,8 +944,8 @@ TODO: only re-write a local database if it is changed.
* Added isArchived() and makeArchived() methods to PilotAppCategory * Added isArchived() and makeArchived() methods to PilotAppCategory
to set the dlpRecArchived flag. to set the dlpRecArchived flag.
* Changed the way how the DBBackup/username/ and conduits/username/ * Changed the way how the DBBackup/username/ and conduits/username/
directories are created (now I'm using KStandardDirs::makeDir and directories are created (now I'm using TDEStandardDirs::makeDir and
KStandardDirs::exists). TDEStandardDirs::exists).
* FirstSync now also means PC->HH or HH->PC directions (which is clear * FirstSync now also means PC->HH or HH->PC directions (which is clear
intuitively, as with these direction, nothing that's on the other intuitively, as with these direction, nothing that's on the other
side should matter at all). side should matter at all).

@ -311,7 +311,7 @@ static inline bool checkBackupDirectory( const TQString &backupDir )
DEBUGKPILOT << fname DEBUGKPILOT << fname
<< ": Creating directory " << backupDir << endl; << ": Creating directory " << backupDir << endl;
KStandardDirs::makeDir( backupDir ); TDEStandardDirs::makeDir( backupDir );
fi = TQFileInfo(backupDir); fi = TQFileInfo(backupDir);

@ -234,7 +234,7 @@ bool DeviceCommThread::open(const TQString &device)
fTempSocket = (-1); fTempSocket = (-1);
link()->fRealPilotPath link()->fRealPilotPath
= KStandardDirs::realFilePath(device.isEmpty() ? link()->fPilotPath : device); = TDEStandardDirs::realFilePath(device.isEmpty() ? link()->fPilotPath : device);
if ( !DeviceMap::self()->canBind(link()->fRealPilotPath) ) if ( !DeviceMap::self()->canBind(link()->fRealPilotPath) )
{ {

@ -386,13 +386,13 @@ bool ConduitAction::openDatabases(const TQString &name, bool *retrieved)
TQFileInfo fi(dbpath); TQFileInfo fi(dbpath);
TQString path(TQFileInfo(dbpath).dir(true).absPath()); TQString path(TQFileInfo(dbpath).dir(true).absPath());
if (!path.endsWith(CSL1("/"))) path.append(CSL1("/")); if (!path.endsWith(CSL1("/"))) path.append(CSL1("/"));
if (!KStandardDirs::exists(path)) if (!TDEStandardDirs::exists(path))
{ {
DEBUGKPILOT << fname << ": Trying to create path for database: <" DEBUGKPILOT << fname << ": Trying to create path for database: <"
<< path << ">" << endl; << path << ">" << endl;
KStandardDirs::makeDir(path); TDEStandardDirs::makeDir(path);
} }
if (!KStandardDirs::exists(path)) if (!TDEStandardDirs::exists(path))
{ {
DEBUGKPILOT << fname << ": Database directory does not exist." << endl; DEBUGKPILOT << fname << ": Database directory does not exist." << endl;
if (retrieved) *retrieved = false; if (retrieved) *retrieved = false;

Loading…
Cancel
Save