diff options
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() |