javamanager/javacaptain/extensionplugins/javacertstore/src.s60/smartcardcryptotokenreader.cpp
changeset 61 bf7ee68962da
parent 21 2a9601315dfc
child 83 26b2b12093af
--- a/javamanager/javacaptain/extensionplugins/javacertstore/src.s60/smartcardcryptotokenreader.cpp	Tue Jul 06 14:10:26 2010 +0300
+++ b/javamanager/javacaptain/extensionplugins/javacertstore/src.s60/smartcardcryptotokenreader.cpp	Wed Aug 18 09:43:15 2010 +0300
@@ -59,7 +59,7 @@
         NextState(Initialize());
         break;
     case EListTokenTypes:
-        NextState(ListTokenTypes());
+        NextState(ListTokenTypesL());
         break;
     case EOpenTokenType:
         NextState(OpenTokenType());
@@ -132,11 +132,11 @@
     return true;
 }
 
-bool SmartCardCryptoTokenReader::ListTokenTypes()
+bool SmartCardCryptoTokenReader::ListTokenTypesL()
 {
     TCTTokenTypeAttribute att = { KCTRemovable , 1 };
-    iSmartCardTokensAttributes.Append(att);
-    iSmartCardTokensInterfaces.Append(TUid::Uid(KInterfaceCertStore));
+    iSmartCardTokensAttributes.AppendL(att);
+    iSmartCardTokensInterfaces.AppendL(TUid::Uid(KInterfaceCertStore));
     TCTFindTokenTypesByInterfaceAndAttribute findByIAndA(
         iSmartCardTokensInterfaces.Array(), iSmartCardTokensAttributes.Array());
     CCTTokenTypeInfo::ListL(iSmartCardTokenTypes, findByIAndA);