diff options
author | Timothy Pearson <[email protected]> | 2013-01-24 13:21:28 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-24 13:21:28 -0600 |
commit | 6c1d52c8248adb9189c944a28efde52330e99b66 (patch) | |
tree | 842df8de70813d5097e5d7ffe04577c4077381d9 /kmymoney2/widgets/kmymoneygpgconfig.cpp | |
parent | 4b12aca2f1e0304a1cb35df621e9a993dd4d81f7 (diff) | |
download | kmymoney-6c1d52c8248adb9189c944a28efde52330e99b66.tar.gz kmymoney-6c1d52c8248adb9189c944a28efde52330e99b66.zip |
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'kmymoney2/widgets/kmymoneygpgconfig.cpp')
-rw-r--r-- | kmymoney2/widgets/kmymoneygpgconfig.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kmymoney2/widgets/kmymoneygpgconfig.cpp b/kmymoney2/widgets/kmymoneygpgconfig.cpp index 5ca6991..453ab7d 100644 --- a/kmymoney2/widgets/kmymoneygpgconfig.cpp +++ b/kmymoney2/widgets/kmymoneygpgconfig.cpp @@ -63,7 +63,7 @@ void kMyMoneyGPGConfig::resetConfig(void) void kMyMoneyGPGConfig::readConfig(void) { - KConfig *config = KGlobal::config(); + KConfig *config = TDEGlobal::config(); config->setGroup("General Options"); m_resetUseEncryption = config->readBoolEntry("WriteDataEncrypted", false); m_resetRecover = config->readBoolEntry("EncryptRecover", false); @@ -74,7 +74,7 @@ void kMyMoneyGPGConfig::readConfig(void) void kMyMoneyGPGConfig::writeConfig(void) { - KConfig *config = KGlobal::config(); + KConfig *config = TDEGlobal::config(); config->setGroup("General Options"); config->writeEntry("WriteDataEncrypted", m_useEncryption->isChecked()); config->writeEntry("EncryptRecover", m_recover->isChecked()); |