equal
deleted
inserted
replaced
545 aServiceName = entry->GetServiceName(); |
545 aServiceName = entry->GetServiceName(); |
546 } |
546 } |
547 |
547 |
548 CleanupStack::PopAndDestroy( 2 ); |
548 CleanupStack::PopAndDestroy( 2 ); |
549 } |
549 } |
550 |
550 // --------------------------------------------------------------------------- |
|
551 // CIMCVEngine::IsVoipServiceL() |
|
552 // --------------------------------------------------------------------------- |
|
553 // |
|
554 EXPORT_C TBool CIMCVEngine::IsVoipServiceL() |
|
555 { |
|
556 TBool isvoipservice = EFalse; |
|
557 CSPSettings* settings = CSPSettings::NewLC(); |
|
558 CSPProperty* property = CSPProperty::NewLC(); |
|
559 settings->FindPropertyL(iServiceId, ESubPropertyVoIPEnabled, *property); |
|
560 if (property) |
|
561 { |
|
562 isvoipservice = ETrue; |
|
563 } |
|
564 CleanupStack::PopAndDestroy(2); //property,settings |
|
565 return isvoipservice; |
|
566 } |
551 |
567 |
552 |
568 |
553 |
569 |
554 // --------------------------------------------------------------------------- |
570 // --------------------------------------------------------------------------- |
555 // CIMCVEngine::GetBrandIdL() |
571 // CIMCVEngine::GetBrandIdL() |