diff -r 04837bf3a628 -r 21be958eb3ce radioapp/radioenginewrapper/src/radioenginewrapper_win32_p.cpp --- a/radioapp/radioenginewrapper/src/radioenginewrapper_win32_p.cpp Tue Oct 12 11:25:14 2010 +0300 +++ b/radioapp/radioenginewrapper/src/radioenginewrapper_win32_p.cpp Fri Oct 15 16:26:27 2010 +0300 @@ -257,6 +257,25 @@ /*! * */ +void RadioEngineWrapperPrivate::addRadiotext( const QString& radiotext ) +{ + const uint frequency = mStationHandler.currentFrequency(); + mStationHandler.setCurrentRadioText( frequency, radiotext ); +} + +/*! + * + */ +void RadioEngineWrapperPrivate::clearRadiotext() +{ + const uint frequency = mStationHandler.currentFrequency(); + mStationHandler.setCurrentRadioText( frequency, "" ); +} + + +/*! + * + */ bool RadioEngineWrapperPrivate::isOffline() const { return mEngineSettings->value( KKeyOffline, false ).toBool();