contentstorage/casrv/cawidgetscanner/src/cawidgetscannerparser.cpp
changeset 66 32469d7d46ff
parent 61 8e5041d13c84
child 73 4bc7b118b3df
--- a/contentstorage/casrv/cawidgetscanner/src/cawidgetscannerparser.cpp	Fri Apr 16 15:16:09 2010 +0300
+++ b/contentstorage/casrv/cawidgetscanner/src/cawidgetscannerparser.cpp	Mon May 03 12:48:45 2010 +0300
@@ -239,7 +239,7 @@
     SetIconUriL( aElement, aPackageUid, widget);
     widget->SetPackageUidL( aPackageUid );
     SetMmcIdL( widget );
-    
+
     TTime modificationTime;
     iFs.Modified( aFilePath, modificationTime);
     TInt64 modificationIntTime = modificationTime.Int64();
@@ -268,7 +268,7 @@
 void CCaWidgetScannerParser::SetUriL(
     TXmlEngElement & aElement, CCaWidgetDescription * aWidget )
 {
-    HBufC *attributeValue = CnvUtfConverter::ConvertToUnicodeFromUtf7L(
+    HBufC *attributeValue = CnvUtfConverter::ConvertToUnicodeFromUtf8L(
         aElement.AttributeValueL( KUri ) );
     CleanupStack::PushL( attributeValue );
 
@@ -286,7 +286,7 @@
 void CCaWidgetScannerParser::SetLibraryL( TXmlEngElement & aElement,
     const TDesC & aPackageUid, CCaWidgetDescription * aWidget )
 {
-    HBufC *attributeValue = CnvUtfConverter::ConvertToUnicodeFromUtf7L(
+    HBufC *attributeValue = CnvUtfConverter::ConvertToUnicodeFromUtf8L(
         aElement.AttributeValueL( KLibrary ) );
     CleanupStack::PushL( attributeValue );
 
@@ -296,7 +296,7 @@
 
         //set path for hs to use, trim last 2 chars (doubleslash)
         aWidget->SetPathL(libraryPath->Mid(0,libraryPath->Length()-1));
-        
+
         libraryPath->ReAllocL(
             libraryPath->Length() + attributeValue->Length());
 
@@ -320,7 +320,7 @@
 void CCaWidgetScannerParser::SetTitleL(
     TXmlEngElement & aElement, CCaWidgetDescription * aWidget )
 {
-    HBufC *attributeValue = CnvUtfConverter::ConvertToUnicodeFromUtf7L(
+    HBufC *attributeValue = CnvUtfConverter::ConvertToUnicodeFromUtf8L(
                 aElement.AttributeValueL( KTitle ) );
     CleanupStack::PushL( attributeValue );
 
@@ -338,7 +338,7 @@
 void CCaWidgetScannerParser::SetDescriptionL(
     TXmlEngElement & aElement, CCaWidgetDescription * aWidget )
 {
-    HBufC *attributeValue = CnvUtfConverter::ConvertToUnicodeFromUtf7L(
+    HBufC *attributeValue = CnvUtfConverter::ConvertToUnicodeFromUtf8L(
                 aElement.AttributeValueL( KDescription ) );
     CleanupStack::PushL( attributeValue );
 
@@ -356,7 +356,7 @@
 void CCaWidgetScannerParser::SetVisibilityL(
     TXmlEngElement & aElement, CCaWidgetDescription * aWidget )
 {
-    HBufC *hidden = CnvUtfConverter::ConvertToUnicodeFromUtf7L(
+    HBufC *hidden = CnvUtfConverter::ConvertToUnicodeFromUtf8L(
                 aElement.AttributeValueL( KHidden ) );
     CleanupStack::PushL( hidden );
 
@@ -374,7 +374,7 @@
 void CCaWidgetScannerParser::SetIconUriL( TXmlEngElement & aElement,
     const TDesC & aPackageUid, CCaWidgetDescription * aWidget )
 {
-    HBufC *attributeValue = CnvUtfConverter::ConvertToUnicodeFromUtf7L(
+    HBufC *attributeValue = CnvUtfConverter::ConvertToUnicodeFromUtf8L(
                 aElement.AttributeValueL( KIconUri ) );
     CleanupStack::PushL( attributeValue );