Changeset 9196cb0 for src/mvc/eventmodel.cpp
- Timestamp:
- 10/17/11 23:49:51 (11 years ago)
- Branches:
- master, qt5
- Children:
- 018d4d6
- Parents:
- 11d7ec5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mvc/eventmodel.cpp
r11d7ec5 r9196cb0 242 242 if(Conference::getAll().count()) 243 243 { 244 mEvents = Event::getByDate(QDate(aDate.year(), aDate.month(), aDate.day()), aConferenceId, "start ");244 mEvents = Event::getByDate(QDate(aDate.year(), aDate.month(), aDate.day()), aConferenceId, "start, duration"); 245 245 } 246 246 createTimeGroups(); … … 265 265 { 266 266 try{ 267 mEvents = Event::getSearchResultByDate(QDate(aDate.year(), aDate.month(), aDate.day()), aConferenceId, "start ");267 mEvents = Event::getSearchResultByDate(QDate(aDate.year(), aDate.month(), aDate.day()), aConferenceId, "start, duration"); 268 268 } 269 269 catch( OrmException &e ){ … … 286 286 if (Conference::getAll().count()) 287 287 { 288 mEvents = Event::getByDate(QDate(aDate.year(), aDate.month(), aDate.day()), aConferenceId, "xid_track, start ");288 mEvents = Event::getByDate(QDate(aDate.year(), aDate.month(), aDate.day()), aConferenceId, "xid_track, start, duration"); 289 289 } 290 290 createTrackGroups();
Note: See TracChangeset
for help on using the changeset viewer.