iaupdate/IAD/firmwareupdate/src/iaupdatefwsyncutil.cpp
branchRCL_3
changeset 25 7333d7932ef7
parent 0 ba25891c3a9e
child 26 8b7f4e561641
--- a/iaupdate/IAD/firmwareupdate/src/iaupdatefwsyncutil.cpp	Thu Aug 19 10:02:49 2010 +0300
+++ b/iaupdate/IAD/firmwareupdate/src/iaupdatefwsyncutil.cpp	Tue Aug 31 15:21:33 2010 +0300
@@ -1,5 +1,5 @@
 /*
-* Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies).
+* Copyright (c) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
 * All rights reserved.
 * This component and the accompanying materials are made available
 * under the terms of "Eclipse Public License v1.0"
@@ -20,11 +20,8 @@
 
 // INCLUDES
 #include <SyncMLTransportProperties.h>
-#include <eikenv.h>
-#include <bautils.h>
 #include <collate.h>
-#include <StringLoader.h>
-#include <avkon.rsg>
+
 
 #include "iaupdatefwsyncutil.h"
 #include "iaupdatefwdebug.h"
@@ -156,10 +153,10 @@
 		FLOG( "[OMADM] TUtil::SyncTimeLC time" );
 		
 		TBuf<KBufSize> timeFormat;
-		HBufC* buf = StringLoader::LoadLC( R_QTN_TIME_USUAL_WITH_ZERO );
+		/*HBufC* buf = StringLoader::LoadLC( R_QTN_TIME_USUAL_WITH_ZERO );
 		TUtil::StrCopy( timeFormat, *buf );
 		CleanupStack::PopAndDestroy( buf );
-		homeTime.FormatL( ptr, timeFormat );
+		homeTime.FormatL( ptr, timeFormat );*/
 		
 		FLOG( "[OMADM] TUtil::SyncTimeLC time done" );
 		}
@@ -168,10 +165,10 @@
 		FLOG( "[OMADM] TUtil::SyncTimeLC date" );
 		
 		TBuf<KBufSize> dateFormat;
-        HBufC* buf = StringLoader::LoadLC( R_QTN_DATE_USUAL_WITH_ZERO );
+        /*HBufC* buf = StringLoader::LoadLC( R_QTN_DATE_USUAL_WITH_ZERO );
         TUtil::StrCopy( dateFormat, *buf );
         CleanupStack::PopAndDestroy( buf );
-		homeTime.FormatL(ptr, dateFormat);
+		homeTime.FormatL(ptr, dateFormat);*/
 		
 		FLOG( "[OMADM] TUtil::SyncTimeLC date done" );
 		}
@@ -238,12 +235,12 @@
 // TUtil::GetDateTextL
 // -----------------------------------------------------------------------------
 //
-void TUtil::GetDateTextL(TDes& aText, TTime aDateTime)
+void TUtil::GetDateTextL(TDes& /*aText*/, TTime aDateTime)
 	{
 	TTime homeTime = ConvertUniversalToHomeTime( aDateTime );
-	HBufC* hBuf = StringLoader::LoadLC( R_QTN_DATE_USUAL_WITH_ZERO );
-    homeTime.FormatL( aText, *hBuf );
-    CleanupStack::PopAndDestroy( hBuf );
+	//HBufC* hBuf = StringLoader::LoadLC( R_QTN_DATE_USUAL_WITH_ZERO );
+    //homeTime.FormatL( aText, *hBuf );
+    //CleanupStack::PopAndDestroy( hBuf );
 	}
 
 
@@ -251,12 +248,12 @@
 // TUtil::GetTimeTextL
 // -----------------------------------------------------------------------------
 //
-void TUtil::GetTimeTextL( TDes& aText, TTime aDateTime )
+void TUtil::GetTimeTextL( TDes& /*aText*/, TTime aDateTime )
 	{
 	TTime homeTime = ConvertUniversalToHomeTime( aDateTime );
-	HBufC* hBuf = StringLoader::LoadLC( R_QTN_TIME_USUAL_WITH_ZERO );
-    homeTime.FormatL( aText, *hBuf );
-    CleanupStack::PopAndDestroy( hBuf );
+	//HBufC* hBuf = StringLoader::LoadLC( R_QTN_TIME_USUAL_WITH_ZERO );
+    //homeTime.FormatL( aText, *hBuf );
+    //CleanupStack::PopAndDestroy( hBuf );
 	}