pimappservices/calendar/client/src/calentry.cpp
branchRCL_3
changeset 30 bd7edf625bdd
parent 29 12af337248b1
child 31 97232defd20e
--- a/pimappservices/calendar/client/src/calentry.cpp	Tue Aug 31 15:13:43 2010 +0300
+++ b/pimappservices/calendar/client/src/calentry.cpp	Wed Sep 01 12:32:31 2010 +0100
@@ -28,7 +28,7 @@
 Note that this function will not work unless a CCalSession has been created
 by calling CCalSession::NewL().
 
-@param aType One of: EAppt, ETodo, EEvent, EReminder, EAnniv, ENote to create
+@param aType One of: EAppt, ETodo, EEvent, EReminder, EAnniv to create
 an appointment, a todo, an event, a reminder or an anniversary entry.
 @param aUid The Global UID of the entry. This field is mandatory. NewL takes ownership of the global UID.
 @param aMethod The Method value describing the entry. Default value is EGSMethodNone.
@@ -52,7 +52,7 @@
 
 The entry takes ownership of the Uid descriptor.
 
-@param aType One of: EAppt, ETodo, EEvent, EReminder, EAnniv, ENote to create
+@param aType One of: EAppt, ETodo, EEvent, EReminder, EAnniv to create
 an appointment, a todo, an event, a reminder or an anniversary entry.
 @param aUid The Global UID of the entry. This field is mandatory. NewL takes ownership of the global UID.
 @param aMethod The Method value describing the entry.
@@ -513,7 +513,7 @@
 
 /** Gets the type of entry.
 
-@return The entry type. One of: EAppt, ETodo, EEvent, EReminder, EAnniv, ENote.
+@return The entry type. One of: EAppt, ETodo, EEvent, EReminder, EAnniv.
 
 @publishedAll
 @released
@@ -1143,33 +1143,6 @@
 	return iImpl->ShortFileIdL();
 	}
 
-/** Set the entry as favourite
-   
-@param aFavourite value for favourite
-	positive integer for setting entry as favourite
-	zero for unmarking as favourite
-	
-@pre None
-@post None
-@capability None
- */
-EXPORT_C void CCalEntry::SetFavouriteL(TUint32 aFavourite)
-	{
-	iImpl->SetUserIntL(aFavourite);
-	}
-
-/** Get favourite property from the entry
-
-@return TUint32 return value for favourite
-	positive integer if entry is favourite
-	zero if entry is not favourite 
-@capability None
- */
-EXPORT_C TUint32 CCalEntry::FavouriteL()
-	{
-	return iImpl->UserIntL();
-	}
-
 // CCalEntryId //