diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:12:01 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:12:01 -0600 |
commit | c97b553d6150c31db243502b996e1f4919628413 (patch) | |
tree | edea2051c436fa4bf6db98d816c43614129970cd /kradio3/plugins/timeshifter | |
parent | d9b70de56a7c1ce685cc8fd119d9b004e1fbfdee (diff) | |
download | tderadio-c97b553d6150c31db243502b996e1f4919628413.tar.gz tderadio-c97b553d6150c31db243502b996e1f4919628413.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kradio3/plugins/timeshifter')
-rw-r--r-- | kradio3/plugins/timeshifter/timeshifter.cpp | 4 | ||||
-rw-r--r-- | kradio3/plugins/timeshifter/timeshifter.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/kradio3/plugins/timeshifter/timeshifter.cpp b/kradio3/plugins/timeshifter/timeshifter.cpp index fb8d653..f5b3d65 100644 --- a/kradio3/plugins/timeshifter/timeshifter.cpp +++ b/kradio3/plugins/timeshifter/timeshifter.cpp @@ -84,7 +84,7 @@ void TimeShifter::noticeConnectedI (ISoundStreamServer *s, bool pointer_valid) } -void TimeShifter::saveState (KConfig *config) const +void TimeShifter::saveState (TDEConfig *config) const { config->setGroup(TQString("timeshifter-") + name()); @@ -96,7 +96,7 @@ void TimeShifter::saveState (KConfig *config) const } -void TimeShifter::restoreState (KConfig *config) +void TimeShifter::restoreState (TDEConfig *config) { config->setGroup(TQString("timeshifter-") + name()); diff --git a/kradio3/plugins/timeshifter/timeshifter.h b/kradio3/plugins/timeshifter/timeshifter.h index 42f5869..cada015 100644 --- a/kradio3/plugins/timeshifter/timeshifter.h +++ b/kradio3/plugins/timeshifter/timeshifter.h @@ -58,8 +58,8 @@ public: // PluginBase public: - virtual void saveState (KConfig *) const; - virtual void restoreState (KConfig *); + virtual void saveState (TDEConfig *) const; + virtual void restoreState (TDEConfig *); virtual ConfigPageInfo createConfigurationPage(); virtual AboutPageInfo createAboutPage(); |