Changeset d1fb9ee
- Timestamp:
- 01/20/10 14:18:49 (13 years ago)
- Branches:
- master, qt5
- Children:
- b1a201a
- Parents:
- a3f6b00
- Location:
- src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gui/mainwindow.cpp
ra3f6b00 rd1fb9ee 40 40 statusBar()->showMessage(tr("Ready")); 41 41 42 // create activity map42 //update activity map 43 43 Activity::updateActivityMap(); 44 44 -
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(); -
src/mvc/eventmodel.h
ra3f6b00 rd1fb9ee 8 8 class EventModel : public QAbstractItemModel 9 9 { 10 public: 11 static const QString COMMA_SEPARATOR; 10 12 public: 11 13 EventModel();
Note: See TracChangeset
for help on using the changeset viewer.