Update contrib.
1 // Copyright (c) 2002-2009 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.
18 #include "DowngradePath.h"
19 #include "FileUtils.h"
21 Languages RDowngradePath::iCurrentLanguage;
23 //overwrite the old array with values in the new array
24 void CopyLanguageArrayL(Languages& old_array,const Languages& new_array)
27 CleanupClosePushL(old_array);
28 for (TInt i=0;i<new_array.Count();i++)
30 old_array.AppendL(new_array[i]);
35 void RDowngradePath::Reset()
37 iCurrentLanguage.Reset();
41 Get whether the current downgrade path has changed
42 @return ETrue if so, EFalse if not.
44 TBool RDowngradePath::HasChangedL(RFs& aFs)
46 TBool hasChanged = EFalse;
47 TInt currentLanguageCount=iCurrentLanguage.Count();
49 //check current language settings
50 if (currentLanguageCount==0)
52 CleanupClosePushL(iCurrentLanguage);
53 //this is during the server boot time,store this settings
54 BaflUtils::GetDowngradePathL(aFs,User::Language(),iCurrentLanguage);
60 //we need to check the new settings against current stored settings
61 //this is likely the case during language change notification
62 Languages newLanguage;
63 CleanupClosePushL(newLanguage);
65 // get current system downgrade path
66 BaflUtils::GetDowngradePathL(aFs, User::Language(), newLanguage);
69 if (currentLanguageCount == newLanguage.Count())
71 TInt langs = newLanguage.Count();
72 // compare each entry in path
73 for (TInt i = 0; i < langs; ++i)
75 if (iCurrentLanguage[i] != newLanguage[i])
78 CopyLanguageArrayL(iCurrentLanguage,newLanguage);
83 // path lengths don't match
86 CopyLanguageArrayL(iCurrentLanguage,newLanguage);
90 CleanupStack::PopAndDestroy(&newLanguage); // cleanup: newLanguage