summaryrefslogtreecommitdiffstats
path: root/kmymoney2/dialogs/kbackupdlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmymoney2/dialogs/kbackupdlg.cpp')
-rw-r--r--kmymoney2/dialogs/kbackupdlg.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kmymoney2/dialogs/kbackupdlg.cpp b/kmymoney2/dialogs/kbackupdlg.cpp
index 08e0cef..b0ab43b 100644
--- a/kmymoney2/dialogs/kbackupdlg.cpp
+++ b/kmymoney2/dialogs/kbackupdlg.cpp
@@ -50,7 +50,7 @@ KBackupDlg::KBackupDlg( TQWidget* parent, const char* name/*, bool modal*/)
readConfig();
// add icons to buttons
- KIconLoader *il = KGlobal::iconLoader();
+ KIconLoader *il = TDEGlobal::iconLoader();
btnOK->setGuiItem(KStdGuiItem::ok());
btnCancel->setGuiItem(KStdGuiItem::cancel());
@@ -72,14 +72,14 @@ KBackupDlg::~KBackupDlg()
void KBackupDlg::chooseButtonClicked()
{
- KURL newDir = KDirSelectDialog::selectDirectory(KGlobalSettings::documentPath());
+ KURL newDir = KDirSelectDialog::selectDirectory(TDEGlobalSettings::documentPath());
if (newDir.hasPath())
txtMountPoint->setText(newDir.path());
}
void KBackupDlg::readConfig(void)
{
- KConfig *config = KGlobal::config();
+ KConfig *config = TDEGlobal::config();
config->setGroup("Last Use Settings");
mountCheckBox->setChecked(config->readBoolEntry("KBackupDlg_mountDevice", false));
txtMountPoint->setText(config->readEntry("KBackupDlg_BackupMountPoint", "/mnt/floppy"));
@@ -87,7 +87,7 @@ void KBackupDlg::readConfig(void)
void KBackupDlg::writeConfig(void)
{
- KConfig *config = KGlobal::config();
+ KConfig *config = TDEGlobal::config();
config->setGroup("Last Use Settings");
config->writeEntry("KBackupDlg_mountDevice", mountCheckBox->isChecked());
config->writeEntry("KBackupDlg_BackupMountPoint", txtMountPoint->text());