diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 00:53:39 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 00:53:39 -0600 |
commit | fe50f29e05b1318b520a33179ea50c88b6e2c89a (patch) | |
tree | 2a697d17f25d06389c2908e79c4b191e5b6c971d /kmymoney2/dialogs/kimportdlg.cpp | |
parent | 9311d363bfabf7f1105e3339922169d89107a724 (diff) | |
download | kmymoney-fe50f29e05b1318b520a33179ea50c88b6e2c89a.tar.gz kmymoney-fe50f29e05b1318b520a33179ea50c88b6e2c89a.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'kmymoney2/dialogs/kimportdlg.cpp')
-rw-r--r-- | kmymoney2/dialogs/kimportdlg.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kmymoney2/dialogs/kimportdlg.cpp b/kmymoney2/dialogs/kimportdlg.cpp index bfa44be..874469f 100644 --- a/kmymoney2/dialogs/kimportdlg.cpp +++ b/kmymoney2/dialogs/kimportdlg.cpp @@ -36,11 +36,11 @@ #include <kpushbutton.h> #include <kcombobox.h> #include <kmessagebox.h> -#include <kfiledialog.h> +#include <tdefiledialog.h> #include <klocale.h> #include <kglobal.h> #include <kiconloader.h> -#include <kio/netaccess.h> +#include <tdeio/netaccess.h> #include <kstandarddirs.h> // ---------------------------------------------------------------------------- @@ -130,18 +130,18 @@ void KImportDlg::slotOkClicked() void KImportDlg::readConfig(void) { - TDEConfig *kconfig = TDEGlobal::config(); - kconfig->setGroup("Last Use Settings"); - m_qlineeditFile->setText(kconfig->readEntry("KImportDlg_LastFile")); + TDEConfig *tdeconfig = TDEGlobal::config(); + tdeconfig->setGroup("Last Use Settings"); + m_qlineeditFile->setText(tdeconfig->readEntry("KImportDlg_LastFile")); } void KImportDlg::writeConfig(void) { - TDEConfig *kconfig = TDEGlobal::config(); - kconfig->setGroup("Last Use Settings"); - kconfig->writeEntry("KImportDlg_LastFile", m_qlineeditFile->text()); - kconfig->writeEntry("KImportDlg_LastProfile", m_profileComboBox->currentText()); - kconfig->sync(); + TDEConfig *tdeconfig = TDEGlobal::config(); + tdeconfig->setGroup("Last Use Settings"); + tdeconfig->writeEntry("KImportDlg_LastFile", m_qlineeditFile->text()); + tdeconfig->writeEntry("KImportDlg_LastProfile", m_profileComboBox->currentText()); + tdeconfig->sync(); } /** Make sure the text input is ok */ |