radioengine/engine/src/cradioengineimp.cpp
changeset 47 74b7c6e79031
parent 44 0a3ad94fc71c
child 54 a8ba0c289b44
--- a/radioengine/engine/src/cradioengineimp.cpp	Mon Aug 23 14:17:50 2010 +0300
+++ b/radioengine/engine/src/cradioengineimp.cpp	Fri Sep 03 12:25:04 2010 +0300
@@ -1171,7 +1171,7 @@
     LOG_METHOD_AUTO;
     LOG_FORMAT( "aError: %d", aError );
 
-    if ( aError == KErrNone || aError == KErrAlreadyExists ) // Tuner activated now or was already active
+    if ( aError == KErrNone || aError == KErrAlreadyExists || aError == -12056 ) // Tuner activated now or was already active
         {
         iRadioInitializationState = ERadioTunerControlGranted;
 
@@ -1271,7 +1271,8 @@
 
     iSeekingState = RadioEngine::ERadioNotSeeking;
 
-    if ( aFrequency == 0 )
+    // -12051 comes from adaptation when no stations found in scanning
+    if ( aError == -12051 || aFrequency == 0 )
         {
         NotifyRadioEvent( ERadioEventFrequency, aError );
         }
@@ -1416,17 +1417,9 @@
 //
 // ---------------------------------------------------------------------------
 //
-void CRadioEngineImp::MrpoMuteChange( TBool aMute )
+void CRadioEngineImp::MrpoMuteChange( TBool /*aMute*/ )
     {
     LEVEL3( LOG_METHOD_AUTO );
-    LOG_FORMAT( "CRadioEngineImp::MrpoMuteChange muted: %d", aMute );
-
-//    TBool muted = iSettings->EngineSettings().IsVolMuted();
-//    if ( !aMute != !muted )
-//        {
-//        iSettings->RadioSetter().SetVolMuted( aMute );
-//        NotifyRadioEvent( ERadioEventMute );
-//        }
     }
 
 // ---------------------------------------------------------------------------