voipplugins/voipadapters/voipxmlprovisioning/voipxmlprocessor/src/voipxmlsiphandler.cpp
branchRCL_3
changeset 8 7117cbf1600a
parent 2 7b872347d83b
child 10 ed1e38b404e5
--- a/voipplugins/voipadapters/voipxmlprovisioning/voipxmlprocessor/src/voipxmlsiphandler.cpp	Fri Feb 19 22:44:34 2010 +0200
+++ b/voipplugins/voipadapters/voipxmlprovisioning/voipxmlprocessor/src/voipxmlsiphandler.cpp	Fri Mar 12 15:42:09 2010 +0200
@@ -234,6 +234,7 @@
                 tempBuf.Copy( KSip() );
                 }
             tempBuf.Append( aValue );
+            //lint -e{960} No need for else statement here
             if ( EProxy == aType )
                 {
                 iProxyUri->Des().Copy( tempBuf );
@@ -248,6 +249,7 @@
             }
         case ETransport:
             {
+            //lint -e{960} No need for else statement here
             if ( EProxy == aType )
                 {
                 iProxyTransport = ValidateTransport( aValue );
@@ -264,6 +266,7 @@
             {
             TInt value;
             TInt err = VoipXmlUtils::Des8ToInt( aValue, value );
+            //lint -e{960} No need for else statement here
             if ( EProxy == aType && KErrNone == err )
                 {
                 iProxyPort = value;
@@ -289,6 +292,7 @@
             }
         case EUsername:
             {
+            //lint -e{960} No need for else statement here
             if ( EProxy == aType )
                 {
                 if ( TSIPProfileTypeInfo::EInternet == 
@@ -323,6 +327,7 @@
             }
         case EPassword:
             {
+            //lint -e{960} No need for else statement here
             if ( EProxy == aType )
                 {
                 iProfile->SetParameter( KSIPOutboundProxy, KSIPDigestPassword,
@@ -365,6 +370,7 @@
         tempBuf.Copy( KColon() );
         tempBuf.AppendNum( iProxyPort );
         }
+    //lint -e{960} No need for else statement here
     if ( EUdp == iProxyTransport )
         {
         tempBuf.Append( KTransport() );
@@ -398,6 +404,7 @@
         tempBuf.Copy( KColon() );
         tempBuf.AppendNum( iRegistrarPort );
         }
+    //lint -e{960} No need for else statement here
     if ( EUdp == iRegistrarTransport )
         {
         tempBuf.Append( KTransport() );