agendainterface/agendautil/src/agendautil.cpp
changeset 64 1881ad52dc45
parent 55 2c54b51f39c4
equal deleted inserted replaced
63:a3cb48f6c889 64:1881ad52dc45
    96 /*!
    96 /*!
    97 	To store the new entry or update the entry in the Calendar db.
    97 	To store the new entry or update the entry in the Calendar db.
    98 
    98 
    99 	\param entry The entry to be added/updated
    99 	\param entry The entry to be added/updated
   100 	\param range The recurrence range of entry
   100 	\param range The recurrence range of entry
       
   101 	\param instanceOriginalDateTime The start time of the original instance.
   101 	\return ulong The local uid of the entry added/updated in the db.
   102 	\return ulong The local uid of the entry added/updated in the db.
   102 */
   103 */
   103 ulong AgendaUtil::store(AgendaEntry &entry, AgendaUtil::RecurrenceRange range)
   104 ulong AgendaUtil::store(
   104 {
   105 		AgendaEntry &entry, AgendaUtil::RecurrenceRange range,
   105 	return d->store(entry, range);
   106 		QDateTime instanceOriginalDateTime)
       
   107 {
       
   108 	return d->store(entry, range, instanceOriginalDateTime);
   106 }
   109 }
   107 
   110 
   108 /*!
   111 /*!
   109 	Clones the `entry' passed in the argument and saves it as type `type'.
   112 	Clones the `entry' passed in the argument and saves it as type `type'.
   110 
   113