voipplugins/voipadapters/voipxmlprovisioning/voipxmlprocessor/src/voipxmlparser.cpp
branchRCL_3
changeset 8 7117cbf1600a
parent 2 7b872347d83b
child 10 ed1e38b404e5
--- a/voipplugins/voipadapters/voipxmlprovisioning/voipxmlprocessor/src/voipxmlparser.cpp	Fri Feb 19 22:44:34 2010 +0200
+++ b/voipplugins/voipadapters/voipxmlprovisioning/voipxmlprocessor/src/voipxmlparser.cpp	Fri Mar 12 15:42:09 2010 +0200
@@ -60,14 +60,14 @@
 //
 void CVoipXmlParser::ConstructL()
     {
-DBG_PRINT( "CVoipXmlParser::ConstructL begin" );
+    DBG_PRINT( "CVoipXmlParser::ConstructL begin" );
 
     iParser = CMDXMLParser::NewL( this );
     iParamHandler = CVoipXmlParamHandler::NewL();
     iDescription = HBufC::NewL( 0 );
     iBrandUrl = HBufC::NewL( 0 );
 
-DBG_PRINT( "CVoipXmlParser::ConstructL end" );
+    DBG_PRINT( "CVoipXmlParser::ConstructL end" );
     }
 
 // ---------------------------------------------------------------------------
@@ -236,6 +236,7 @@
         nodeName.Copy( node->NodeName() );
         nodeName.LowerCase();
         CMDXMLNode* child = node->FirstChild();
+        //lint -e{960} No need for else statement here
         if ( KNodeConfDescription() == nodeName && child && 
             CMDXMLNode::ETextNode == child->NodeType() )
             {
@@ -356,6 +357,7 @@
             element = NULL;
             element = static_cast<CMDXMLElement*>( node );
 
+            //lint -e{960} No need for else statement here
             if ( KNodeParam() == nodeName )
                 {
                 TPtrC nameVal;