equal
deleted
inserted
replaced
1 /* |
1 /* |
2 * Copyright (c) 2003-2006 Nokia Corporation and/or its subsidiary(-ies). |
2 * Copyright (c) 2003-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 "Eclipse Public License v1.0" |
5 * under the terms of "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". |
1039 |
1039 |
1040 TUid temp; |
1040 TUid temp; |
1041 for (TInt i = 0; i < count; i++) |
1041 for (TInt i = 0; i < count; i++) |
1042 { |
1042 { |
1043 applList->Read(i * sizeof(TUid), (TAny*)&temp, sizeof(TUid)); |
1043 applList->Read(i * sizeof(TUid), (TAny*)&temp, sizeof(TUid)); |
1044 aApplications.Append(temp); |
1044 aApplications.AppendL(temp); |
1045 } |
1045 } |
1046 CleanupStack::PopAndDestroy(1); // applList |
1046 CleanupStack::PopAndDestroy(1); // applList |
1047 CleanupStack::PopAndDestroy(); //certDesc |
1047 CleanupStack::PopAndDestroy(); //certDesc |
1048 } |
1048 } |
1049 |
1049 |