agendainterface/agendautil/src/agendautil.cpp
changeset 68 a5a1242fd2e8
parent 58 ef813d54df51
equal deleted inserted replaced
58:ef813d54df51 68:a5a1242fd2e8
    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