ipsservices/ipssossettings/src/ipssetdataapi.cpp
branchRCL_3
changeset 80 726fba06891a
parent 70 968773a0b6ef
--- a/ipsservices/ipssossettings/src/ipssetdataapi.cpp	Wed Sep 15 11:52:37 2010 +0300
+++ b/ipsservices/ipssossettings/src/ipssetdataapi.cpp	Wed Oct 13 14:11:15 2010 +0300
@@ -664,23 +664,23 @@
     {
     FUNC_LOG;
     TInt sizeLimit = aImap4Settings.BodyTextSizeLimit();
-    
-    TInt limit(KMaxTInt);
+
+    TInt limit( KMaxTInt );
     CRepository* centRep = NULL;
     TRAP_IGNORE( centRep = CRepository::NewL( KFreestyleEmailCenRep ) );
-    if (NULL != centRep)
+    if ( NULL != centRep )
         {
-        //not necessary to push centRep as no leave function is called
-        TInt err = centRep->Get(KFreestyleMaxBodySize, limit);
+        // not necessary to push centRep as no leave function is called
+        TInt err = centRep->Get( KFreestyleMaxBodySize, limit );
         limit *= KKilo;
-        if (limit == 0 || err)
+        if ( limit == 0 || err )
             {
             limit = KMaxTInt;
             }
-        //free
+        // free
         delete centRep;
         centRep = NULL;		
-        }//end if (NULL != centRep)
+        }
 
     if ( sizeLimit == KIpsSetDataHeadersOnly )
         {