Update contrib.
2 * Copyright (c) 2002-2004 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
24 #include "SortUtilElaf.h"
25 #include "SortUtilImpl.h"
26 #include "SortUtilImplExport.h"
28 inline TSortUtilElaf::TSortUtilElaf()
33 EXPORT_C MSortUtil* SortUtilFactoryFunctionL()
35 MSortUtil* util = new (ELeave) TSortUtilElaf;
39 TSortUtilElaf::~TSortUtilElaf()
43 TInt TSortUtilElaf::CompareItems
44 (const MSortKeyArray& aLhs,
45 const MSortKeyArray& aRhs) const
52 const TDesC& lhsText =
53 SortUtilImpl::FindNextNonEmptyKey(aLhs, ESortKeyBasic, lhsIndex);
54 const TDesC& rhsText =
55 SortUtilImpl::FindNextNonEmptyKey(aRhs, ESortKeyBasic, rhsIndex);
56 result = lhsText.CompareC(rhsText);
62 while (lhsIndex <= aLhs.SortKeyCount() && rhsIndex < aRhs.SortKeyCount());