diff -r 50974a8b132e -r 5d0ec8b709be serviceproviders/sapi_calendar/inc/calendarinterface.h --- a/serviceproviders/sapi_calendar/inc/calendarinterface.h Tue Nov 24 08:56:33 2009 +0200 +++ b/serviceproviders/sapi_calendar/inc/calendarinterface.h Thu Dec 17 09:09:50 2009 +0200 @@ -272,7 +272,14 @@ * @return void */ void RemoveCalEntryListFromArray( CIterableCalEntryList* aCalEntryList ); - + /** + * Checks the duration of the calendar entry according to the + * repeatrule frequency + * @param repeatrule frequency is passed to check the duration + * + * @return true or false + */ + bool isValidEntryDuration(int type); private: @@ -636,7 +643,18 @@ * @internal */ RPointerArray iArrayCalEntryList; - + + /** + * variable for storing the begin time. + * @internal + */ + TTime iStTime; + + /** + * variable for storing the end time. + * @internal + */ + TTime iEnTime; };