- Timestamp:
- 01/21/10 13:54:58 (13 years ago)
- Branches:
- master, qt5
- Children:
- 606c155
- Parents:
- e662750
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mvc/eventmodel.cpp
re662750 r72cd3af 2 2 #include <conference.h> 3 3 #include <track.h> 4 5 const QString EventModel::COMMA_SEPARATOR = ", "; 4 6 5 7 EventModel::EventModel() … … 166 168 { 167 169 qDebug() << "Loading Conference Data: [" << Conference::getById(aConferenceId).title() << "] " << aDate; 168 mEvents = Event::getByDate(QDate(aDate.year(), aDate.month(), aDate.day()), aConferenceId, "start");170 mEvents = Event::getByDate(QDate(aDate.year(), aDate.month(), aDate.day()), aConferenceId, Event::START); 169 171 } 170 172 createTimeGroups();
Note: See TracChangeset
for help on using the changeset viewer.