radioapp/radiouiengine/src/radiocontrolservice.cpp
changeset 19 afea38384506
parent 16 f54ebcfc1b80
child 37 451b2e1545b2
--- a/radioapp/radiouiengine/src/radiocontrolservice.cpp	Mon May 03 12:31:41 2010 +0300
+++ b/radioapp/radiouiengine/src/radiocontrolservice.cpp	Fri May 14 15:52:32 2010 +0300
@@ -51,27 +51,27 @@
     switch ( commandId )
     {
         case RadioServiceCommand::Play:
-            mUiEngine.toggleMute();
+            mUiEngine.setMute( false );
             break;
 
         case RadioServiceCommand::Pause:
-            mUiEngine.toggleMute();
+            mUiEngine.setMute( true );
             break;
 
         case RadioServiceCommand::Previous:
-            mUiEngine.skipPrevious();
+            mUiEngine.skipStation( StationSkip::PreviousFavorite );
             break;
 
         case RadioServiceCommand::Next:
-            mUiEngine.skipNext();
+            mUiEngine.skipStation( StationSkip::NextFavorite );
             break;
 
         case RadioServiceCommand::SeekUp:
-            mUiEngine.seekUp();
+            mUiEngine.seekStation( Seeking::Up );
             break;
 
         case RadioServiceCommand::SeekDown:
-            mUiEngine.seekDown();
+            mUiEngine.seekStation( Seeking::Down );
             break;
 
         case RadioServiceCommand::Foreground: