diff -r e0ec97ec3cc4 -r 98924d2efce9 creator/engine/src/creator_contactsetcache.cpp --- a/creator/engine/src/creator_contactsetcache.cpp Wed Jun 23 18:13:31 2010 +0300 +++ b/creator/engine/src/creator_contactsetcache.cpp Tue Jul 06 14:17:03 2010 +0300 @@ -32,17 +32,17 @@ return iLinkId; } -void CCreatorContactSet::AppendL(QContactLocalId aContactLink) +void CCreatorContactSet::AppendL(TUint32 aContactLink) { iContactLinks.AppendL(aContactLink); } -RArray CCreatorContactSet::ContactLinks() +RArray CCreatorContactSet::ContactLinks() { return iContactLinks; } -const RArray CCreatorContactSet::ContactLinks() const +const RArray CCreatorContactSet::ContactLinks() const { return iContactLinks; } @@ -73,8 +73,8 @@ virtual ~CContactLinkCacheImp(); virtual void AppendL(CCreatorContactSet* aContactSet); - virtual RArray ContactLinks(TInt aLinkId); - virtual const RArray ContactLinks(TInt aLinkId) const; + virtual RArray ContactLinks(TInt aLinkId); + virtual const RArray ContactLinks(TInt aLinkId) const; virtual RPointerArray& ContactSets(); virtual const RPointerArray& ContactSets() const; @@ -85,7 +85,7 @@ void ConstructL(); CContactLinkCacheImp(); - RArray iEmptyLinks; + RArray iEmptyLinks; RPointerArray iContactSets; CCreatorContactSet* iDummyContactSet; @@ -123,7 +123,7 @@ { iContactSets.AppendL(aContactSet); } -RArray CContactLinkCacheImp::ContactLinks(TInt aLinkId) +RArray CContactLinkCacheImp::ContactLinks(TInt aLinkId) { for( TInt i = 0; i < iContactSets.Count(); ++i ) { @@ -135,7 +135,7 @@ return iEmptyLinks; } -const RArray CContactLinkCacheImp::ContactLinks(TInt aLinkId) const +const RArray CContactLinkCacheImp::ContactLinks(TInt aLinkId) const { for( TInt i = 0; i < iContactSets.Count(); ++i ) {