diff -r d8e625c87f33 -r e7a04a6385be creator/engine/src/creator_contactsetcache.cpp --- a/creator/engine/src/creator_contactsetcache.cpp Thu Jun 17 15:34:52 2010 +0300 +++ b/creator/engine/src/creator_contactsetcache.cpp Thu Jun 24 14:55:55 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 ) {