Update contrib.
1 // Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
15 #include "t_logutil3.h"
16 #include <centralrepository.h>
17 #include "LOGREPDEFS.H"
19 //This function reads logeng repository file and returns the integer value of the given key.
20 static TInt LogGetRepositoryValueL(CRepository& aRepository, TInt aKey)
23 User::LeaveIfError(aRepository.Get(aKey, val));
27 void LogGetContactmatchCountAndNameFormatL(TInt& aContactMatchCount, TLogContactNameFormat& aContactNameFormat)
29 CRepository* repository = NULL;
30 TRAPD(err, repository = CRepository::NewL(KUidLogengRepository));
33 CleanupStack::PushL(repository);
34 aContactMatchCount = LogGetRepositoryValueL(*repository, KContactMatchCountRepKey);
35 aContactNameFormat = static_cast <TLogContactNameFormat> (LogGetRepositoryValueL(*repository, KContactNameFormatRepKey));
36 CleanupStack::PopAndDestroy(repository);
38 else if(err == KErrCorrupt)
40 __ASSERT_DEBUG(!repository, User::Invariant());
45 __ASSERT_DEBUG(!repository, User::Invariant());
46 aContactMatchCount = KLogContactMatchCount;
47 aContactNameFormat = KLogContactNameFormat;