diff -r bc5a64e5bc3c -r 5bcb308bd24d phoneapp/phoneuicontrol/src/tphonecallheaderparam.cpp --- a/phoneapp/phoneuicontrol/src/tphonecallheaderparam.cpp Tue Jul 06 14:15:47 2010 +0300 +++ b/phoneapp/phoneuicontrol/src/tphonecallheaderparam.cpp Wed Aug 18 09:48:26 2010 +0300 @@ -575,7 +575,7 @@ { aCallHeaderData->SetCLIText( iStateMachine.PhoneEngineInfo()->RemotePhoneNumber( aCallId ), - TPhoneCmdParamCallHeaderData::ERight ); + TPhoneCmdParamCallHeaderData::ELeft ); } // If KTelephonyLVFlagUUS is enabled it will over write RemotePartyName setting. @@ -669,22 +669,23 @@ else if ( identity == RMobileCall::ERemoteIdentityUnavailableNoCliCoinOrPayphone || identity == RMobileCall::ERemoteIdentityAvailableNoCliCoinOrPayphone ) { - __PHONELOG( EBasic, EPhoneControl, "GetRemoteInfoDataL br2.5: payphone" ); + __PHONELOG( EBasic, EPhoneControl, "GetRemoteInfoDataL : payphone" ); // Display "Payphone". iManagerUtility.LoadResource( aData, EPhoneCLIPayphone ); } else if ( identity == RMobileCall::ERemoteIdentityUnknown ) { - __PHONELOG( EBasic, EPhoneControl, "GetRemoteInfoDataL br2.6: unknown number" ); + __PHONELOG( EBasic, EPhoneControl, "GetRemoteInfoDataL : unknown number" ); // Display "Unknown Number". iManagerUtility.LoadResource( aData, EPhoneCallCLIUnknown ); } + else if ( iStateMachine.PhoneEngineInfo()->RemotePhoneNumber( aCallId ).Length() ) + { + // Display the number if it is available + aData.Copy( iStateMachine.PhoneEngineInfo()->RemotePhoneNumber( aCallId ) ); + } } - else if ( iStateMachine.PhoneEngineInfo()->RemotePhoneNumber( aCallId ).Length() ) - { - // Display the number if it is available - aData.Copy( iStateMachine.PhoneEngineInfo()->RemotePhoneNumber( aCallId ) ); - } + } return secondaryCli; }