diff -r 5cc91383ab1e -r 7333d7932ef7 iaupdate/IAD/firmwareupdate/src/iaupdatefwsyncutil.cpp --- 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 -#include -#include #include -#include -#include + #include "iaupdatefwsyncutil.h" #include "iaupdatefwdebug.h" @@ -156,10 +153,10 @@ FLOG( "[OMADM] TUtil::SyncTimeLC time" ); TBuf 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 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 ); }