Changeset 64122f1 for src/mvc/eventmodel.cpp
- Timestamp:
- 01/18/10 19:38:55 (13 years ago)
- Branches:
- master, qt5
- Children:
- 707cd31
- Parents:
- 18681b3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mvc/eventmodel.cpp
r18681b3 r64122f1 165 165 { 166 166 qDebug() << "Loading Conference Data: [" << Conference::getById(aConferenceId).title() << "] " << aDate; 167 mEvents = Event::getByDate(QDate(aDate.year(), aDate.month(), aDate.day()), aConferenceId );167 mEvents = Event::getByDate(QDate(aDate.year(), aDate.month(), aDate.day()), aConferenceId, Event::START); 168 168 } 169 169 createTimeGroups(); … … 188 188 { 189 189 qDebug() << "Loading Conference Data (by Activities): [" << Conference::getById(aConferenceId).title() << "] " << aDate; 190 mEvents = Event::getByDate(QDate(aDate.year(), aDate.month(), aDate.day()), aConferenceId );190 mEvents = Event::getByDate(QDate(aDate.year(), aDate.month(), aDate.day()), aConferenceId, Event::XID_ACTIVITY); 191 191 } 192 192 createActivityGroups();
Note: See TracChangeset
for help on using the changeset viewer.