diff -r 6f4453afd006 -r 6c34d0baa0b1 messagingfw/msgsrvnstore/server/inc/MSVENTRY.H --- a/messagingfw/msgsrvnstore/server/inc/MSVENTRY.H Tue Oct 05 13:50:47 2010 +0530 +++ b/messagingfw/msgsrvnstore/server/inc/MSVENTRY.H Tue Oct 19 11:59:06 2010 +0530 @@ -74,7 +74,7 @@ // // Set and get the current context IMPORT_C TInt SetEntry(TMsvId aId); - inline const TMsvEntry& Entry() const; + inline const TMsvEntry& Entry() const{return iEntry;}; IMPORT_C TMsvId OwningService() const; // // current entry only functions @@ -105,9 +105,9 @@ IMPORT_C CMsvStore* EditStoreL(); // // List the children of the context - inline const TMsvSelectionOrdering& Sort(); - inline void SetSort(TMsvSelectionOrdering& aOrdering); - inline void SetMtm(TUid aMtm); + inline const TMsvSelectionOrdering& Sort(){return iOrdering;}; + inline void SetSort(TMsvSelectionOrdering& aOrdering){iOrdering=aOrdering;}; + inline void SetMtm(TUid aMtm){iMtm=aMtm;}; IMPORT_C TInt GetChildren(CMsvEntrySelection& aSelection); // IMPORT_C TInt GetChildrenWithService(TMsvId aServiceId, CMsvEntrySelection& aSelection); @@ -177,6 +177,6 @@ }; -#include + #endif // __MSVENTRY_H__