diff options
author | Timothy Pearson <[email protected]> | 2013-01-25 00:05:29 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-25 00:05:29 -0600 |
commit | e54e867af243223a620f12bf260e1af9ac9f6dc5 (patch) | |
tree | 0e741cd6800d16c390671051ae525f760d87cdb5 /src/backup.cpp | |
parent | 934db26c3f8efe148a5680c22f965ee10f818a61 (diff) | |
download | basket-e54e867af243223a620f12bf260e1af9ac9f6dc5.tar.gz basket-e54e867af243223a620f12bf260e1af9ac9f6dc5.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'src/backup.cpp')
-rw-r--r-- | src/backup.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backup.cpp b/src/backup.cpp index 3572be5..ffcfe72 100644 --- a/src/backup.cpp +++ b/src/backup.cpp @@ -166,7 +166,7 @@ void BackupDialog::backup() TQDir dir; // Compute a default file name & path (eg. "Baskets_2007-01-31.tar.gz"): - KConfig *config = TDEGlobal::config(); + TDEConfig *config = TDEGlobal::config(); config->setGroup("Backups"); TQString folder = config->readEntry("lastFolder", TQDir::homeDirPath()) + "/"; TQString fileName = i18n("Backup filename (without extension), %1 is the date", "Baskets_%1") @@ -224,7 +224,7 @@ void BackupDialog::backup() void BackupDialog::restore() { // Get last backup folder: - KConfig *config = TDEGlobal::config(); + TDEConfig *config = TDEGlobal::config(); config->setGroup("Backups"); TQString folder = config->readEntry("lastFolder", TQDir::homeDirPath()) + "/"; |