diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 23:14:26 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 23:14:26 -0600 |
commit | dd0cfce2e915f718a45dc9f772ce3bff42c0f7ca (patch) | |
tree | 03af58be7ebea0d920f89576cef55fa207886ec9 /tderadio3/plugins/timeshifter/timeshifter.cpp | |
parent | 48906a623383ab5222541ae048e99dd039b62a9a (diff) | |
download | tderadio-dd0cfce2e915f718a45dc9f772ce3bff42c0f7ca.tar.gz tderadio-dd0cfce2e915f718a45dc9f772ce3bff42c0f7ca.zip |
Rename many classes and header files to avoid conflicts with KDE4
Diffstat (limited to 'tderadio3/plugins/timeshifter/timeshifter.cpp')
-rw-r--r-- | tderadio3/plugins/timeshifter/timeshifter.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tderadio3/plugins/timeshifter/timeshifter.cpp b/tderadio3/plugins/timeshifter/timeshifter.cpp index f5b3d65..a46175c 100644 --- a/tderadio3/plugins/timeshifter/timeshifter.cpp +++ b/tderadio3/plugins/timeshifter/timeshifter.cpp @@ -28,13 +28,13 @@ /////////////////////////////////////////////////////////////////////// -PLUGIN_LIBRARY_FUNCTIONS(TimeShifter, "kradio-timeshifter", i18n("TimeShift Support")); +PLUGIN_LIBRARY_FUNCTIONS(TimeShifter, "tderadio-timeshifter", i18n("TimeShift Support")); /////////////////////////////////////////////////////////////////////// TimeShifter::TimeShifter (const TQString &name) : PluginBase(name, i18n("TimeShifter Plugin")), - m_TempFileName("/tmp/kradio-timeshifter-tempfile"), + m_TempFileName("/tmp/tderadio-timeshifter-tempfile"), m_TempFileMaxSize(256*1024*1024), m_PlaybackMixerID(TQString()), m_PlaybackMixerChannel("PCM"), @@ -100,7 +100,7 @@ void TimeShifter::restoreState (TDEConfig *config) { config->setGroup(TQString("timeshifter-") + name()); - TQString fname = config->readEntry("temp-file-name", "/tmp/kradio-timeshifter-tempfile"); + TQString fname = config->readEntry("temp-file-name", "/tmp/tderadio-timeshifter-tempfile"); TQ_UINT64 fsize = 1024 * 1024 * config->readNumEntry("max-file-size", 256); TQString mixerID = config->readEntry ("PlaybackMixerID", TQString()); @@ -120,7 +120,7 @@ ConfigPageInfo TimeShifter::createConfigurationPage() return ConfigPageInfo (conf, i18n("Timeshifter"), i18n("Timeshifter Options"), - "kradio_pause"); + "tderadio_pause"); } AboutPageInfo TimeShifter::createAboutPage() |