diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:08:33 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:08:33 -0600 |
commit | 6078e14f28ec3b34cc2041cbd8628a1d8420512c (patch) | |
tree | c1fc7025048f77334cf5e4d9c76b7ba5ecc12ba7 /kmymoney2/views/kscheduledview.cpp | |
parent | 6c1d52c8248adb9189c944a28efde52330e99b66 (diff) | |
download | kmymoney-6078e14f28ec3b34cc2041cbd8628a1d8420512c.tar.gz kmymoney-6078e14f28ec3b34cc2041cbd8628a1d8420512c.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kmymoney2/views/kscheduledview.cpp')
-rw-r--r-- | kmymoney2/views/kscheduledview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kmymoney2/views/kscheduledview.cpp b/kmymoney2/views/kscheduledview.cpp index 2635d7d..26df1ac 100644 --- a/kmymoney2/views/kscheduledview.cpp +++ b/kmymoney2/views/kscheduledview.cpp @@ -309,7 +309,7 @@ void KScheduledView::slotRearrange(void) void KScheduledView::readConfig(void) { - KConfig *config = TDEGlobal::config(); + TDEConfig *config = TDEGlobal::config(); config->setGroup("Last Use Settings"); m_openBills = config->readBoolEntry("KScheduleView_openBills", true); m_openDeposits = config->readBoolEntry("KScheduleView_openDeposits", true); @@ -324,7 +324,7 @@ void KScheduledView::readConfig(void) void KScheduledView::writeConfig(void) { - KConfig *config = TDEGlobal::config(); + TDEConfig *config = TDEGlobal::config(); config->setGroup("Last Use Settings"); config->writeEntry("KScheduleView_openBills", m_openBills); config->writeEntry("KScheduleView_openDeposits", m_openDeposits); |