Changeset d1fb9ee for src/mvc/eventmodel.cpp
- Timestamp:
- 01/20/10 14:18:49 (13 years ago)
- Branches:
- master, qt5
- Children:
- b1a201a
- Parents:
- a3f6b00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mvc/eventmodel.cpp
ra3f6b00 rd1fb9ee 2 2 #include <conference.h> 3 3 #include <activity.h> 4 5 const QString EventModel::COMMA_SEPARATOR = ", "; 4 6 5 7 EventModel::EventModel() … … 189 191 { 190 192 qDebug() << "Loading Conference Data (by Activities): [" << Conference::getById(aConferenceId).title() << "] " << aDate; 191 mEvents = Event::getByDate(QDate(aDate.year(), aDate.month(), aDate.day()), aConferenceId, Event::XID_ACTIVITY );193 mEvents = Event::getByDate(QDate(aDate.year(), aDate.month(), aDate.day()), aConferenceId, Event::XID_ACTIVITY + COMMA_SEPARATOR + Event::START); 192 194 } 193 195 createActivityGroups();
Note: See TracChangeset
for help on using the changeset viewer.