diff -r e5618cc85d74 -r 6c158198356e javamanager/javacaptain/extensionplugins/javacertstore/src.s60/smartcardcryptotokenreader.cpp --- a/javamanager/javacaptain/extensionplugins/javacertstore/src.s60/smartcardcryptotokenreader.cpp Thu Jul 15 18:31:06 2010 +0300 +++ b/javamanager/javacaptain/extensionplugins/javacertstore/src.s60/smartcardcryptotokenreader.cpp Thu Aug 19 09:48:13 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);