diff -r c198609911f9 -r fd30d51f876b notes/notesui/notesmodel/inc/notesmodel.h --- a/notes/notesui/notesmodel/inc/notesmodel.h Fri Apr 16 14:57:40 2010 +0300 +++ b/notes/notesui/notesmodel/inc/notesmodel.h Mon May 03 12:30:32 2010 +0300 @@ -31,6 +31,7 @@ class QAbstractItemModel; class QStandardItemModel; class AgendaUtil; +class AgendaEntry; NOTES_TEST_CLASS(TestNotesModel) @@ -57,12 +58,14 @@ private: void modifyEntryInModel(ulong id, int row); - void appendNotesToModel(QList &ids); - void appendInCompTodosToModel(QList &ids); - void appendCompTodosToModel(QList &ids); + void appendNotesToModel(QList &agendaEntryList); + void appendInCompTodosToModel(QList &agendaEntryList); + void appendCompTodosToModel(QList &agendaEntryList); bool insertNoteToModel(QModelIndex &index, ulong id); bool insertInCompTodoToModel(QModelIndex &index, ulong id); bool insertCompTodoToModel(QModelIndex &index, ulong id); + QString dateFormatString(); + QString timeFormatString(); private: QStandardItemModel *mSourceModel;