cryptoservices/certificateandkeymgmt/tcertstore/T_ccttokentypeinfoattributes.cpp
changeset 80 b4bf7a662141
parent 8 35751d3474b7
equal deleted inserted replaced
71:dd83586b62d6 80:b4bf7a662141
     1 /*
     1 /*
     2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 * Copyright (c) 2005-2010 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     4 * This component and the accompanying materials are made available
     5 * under the terms of the License "Eclipse Public License v1.0"
     5 * under the terms of the License "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
    68 		case EFinished:
    68 		case EFinished:
    69 			{
    69 			{
    70 			RArray<TUid> uidArray;
    70 			RArray<TUid> uidArray;
    71 			CleanupClosePushL(uidArray);
    71 			CleanupClosePushL(uidArray);
    72 			TUid uid1 = { KInterfaceCertStore };
    72 			TUid uid1 = { KInterfaceCertStore };
    73 				
    73 						
    74 			uidArray.Append(uid1);
    74 			uidArray.AppendL(uid1);
    75 			TCTFindTokenTypesByInterface filter(uidArray.Array());
    75 			TCTFindTokenTypesByInterface filter(uidArray.Array());
    76 			CCTTokenTypeInfo::ListL(iTokenTypes, filter);
    76 			CCTTokenTypeInfo::ListL(iTokenTypes, filter);
    77 
    77 
    78 			CleanupStack::PopAndDestroy();	// uidArray
    78 			CleanupStack::PopAndDestroy();	// uidArray
    79 			
    79