diff -r 095bea5f582e -r 0ac9a5310753 mmserv/radioutility/radio_utility/src/RadioFmTunerUtility.cpp --- a/mmserv/radioutility/radio_utility/src/RadioFmTunerUtility.cpp Tue Aug 31 15:43:02 2010 +0300 +++ b/mmserv/radioutility/radio_utility/src/RadioFmTunerUtility.cpp Wed Sep 01 12:23:00 2010 +0100 @@ -18,7 +18,6 @@ #include #include "RadioFmTunerUtilityBody.h" -#include "trace.h" // ----------------------------------------------------------------------------- // CRadioFmTunerUtility::NewL @@ -29,7 +28,6 @@ RRadioSession& aRadioSession, MRadioFmTunerObserver& aObserver) { - FUNC_LOG; CRadioFmTunerUtility* self = new(ELeave) CRadioFmTunerUtility; CleanupStack::PushL(self); self->iBody = CRadioFmTunerUtility::CBody::NewL(aRadioSession, aObserver); @@ -44,7 +42,6 @@ // EXPORT_C CRadioFmTunerUtility::~CRadioFmTunerUtility() { - FUNC_LOG; delete iBody; } @@ -55,7 +52,6 @@ // CRadioFmTunerUtility::CRadioFmTunerUtility() { - FUNC_LOG; } // ----------------------------------------------------------------------------- @@ -65,7 +61,6 @@ // EXPORT_C void CRadioFmTunerUtility::RequestTunerControl() { - FUNC_LOG; ASSERT(iBody); iBody->RequestTunerControl(); } @@ -77,7 +72,6 @@ // EXPORT_C void CRadioFmTunerUtility::Close() { - FUNC_LOG; ASSERT(iBody); iBody->Close(); } @@ -90,7 +84,6 @@ EXPORT_C TInt CRadioFmTunerUtility::GetCapabilities( TFmTunerCapabilities& aCaps) { - FUNC_LOG; ASSERT(iBody); return iBody->GetCapabilities(aCaps); } @@ -104,7 +97,6 @@ TBool aEnable ) { - FUNC_LOG; ASSERT(iBody); return iBody->EnableTunerInOfflineMode(aEnable); } @@ -117,7 +109,6 @@ EXPORT_C void CRadioFmTunerUtility::SetFrequency( TInt aFrequency ) { - FUNC_LOG; ASSERT(iBody); iBody->SetFrequency(aFrequency); } @@ -129,7 +120,6 @@ // EXPORT_C void CRadioFmTunerUtility::CancelSetFrequency() { - FUNC_LOG; ASSERT(iBody); iBody->CancelSetFrequency(); } @@ -142,7 +132,6 @@ EXPORT_C TInt CRadioFmTunerUtility::GetFrequency( TInt& aFrequency ) const { - FUNC_LOG; ASSERT(iBody); return iBody->GetFrequency(aFrequency); } @@ -155,7 +144,6 @@ EXPORT_C void CRadioFmTunerUtility::SetFrequencyRange( TFmRadioFrequencyRange aRange ) { - FUNC_LOG; ASSERT(iBody); iBody->SetFrequencyRange(aRange); } @@ -167,7 +155,6 @@ // EXPORT_C void CRadioFmTunerUtility::CancelSetFrequencyRange() { - FUNC_LOG; ASSERT(iBody); iBody->CancelSetFrequencyRange(); } @@ -182,7 +169,6 @@ TInt& aMinFreq, TInt& aMaxFreq ) const { - FUNC_LOG; ASSERT(iBody); return iBody->GetFrequencyRange(aRange, aMinFreq, aMaxFreq); } @@ -195,7 +181,6 @@ EXPORT_C void CRadioFmTunerUtility::StationSeek( TBool aUpwards ) { - FUNC_LOG; ASSERT(iBody); iBody->StationSeek(aUpwards); } @@ -207,7 +192,6 @@ // EXPORT_C void CRadioFmTunerUtility::CancelStationSeek() { - FUNC_LOG; ASSERT(iBody); iBody->CancelStationSeek(); } @@ -220,7 +204,6 @@ EXPORT_C TInt CRadioFmTunerUtility::GetSignalStrength( TInt& aSignalStrength ) const { - FUNC_LOG; ASSERT(iBody); return iBody->GetSignalStrength(aSignalStrength); } @@ -233,7 +216,6 @@ EXPORT_C TInt CRadioFmTunerUtility::GetMaxSignalStrength( TInt& aMaxSignalStrength ) const { - FUNC_LOG; ASSERT(iBody); return iBody->GetMaxSignalStrength(aMaxSignalStrength); } @@ -246,7 +228,6 @@ EXPORT_C TInt CRadioFmTunerUtility::GetStereoMode( TBool& aStereo ) const { - FUNC_LOG; ASSERT(iBody); return iBody->GetStereoMode(aStereo); } @@ -259,7 +240,6 @@ EXPORT_C TInt CRadioFmTunerUtility::ForceMonoReception( TBool aForcedMono ) { - FUNC_LOG; ASSERT(iBody); return iBody->ForceMonoReception(aForcedMono); } @@ -272,7 +252,6 @@ EXPORT_C TInt CRadioFmTunerUtility::GetForcedMonoReception( TBool& aForcedMono ) const { - FUNC_LOG; ASSERT(iBody); return iBody->GetForcedMonoReception(aForcedMono); } @@ -285,7 +264,6 @@ EXPORT_C TInt CRadioFmTunerUtility::SetSquelch( TBool aSquelch ) { - FUNC_LOG; ASSERT(iBody); return iBody->SetSquelch(aSquelch); } @@ -298,7 +276,6 @@ EXPORT_C TInt CRadioFmTunerUtility::GetSquelch( TBool& aSquelch ) const { - FUNC_LOG; ASSERT(iBody); return iBody->GetSquelch(aSquelch); }