Changeset e662750 for src/mvc/eventmodel.cpp
- Timestamp:
- 01/21/10 10:49:41 (13 years ago)
- Branches:
- master, qt5
- Children:
- 72cd3af
- Parents:
- 842f5f9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mvc/eventmodel.cpp
r842f5f9 re662750 183 183 } 184 184 185 void EventModel::loadSearchResultEvents(const QDate &aDate, int aConferenceId) 186 { 187 clearModel(); 188 // check for existence of the conference in the DB 189 if(Conference::getAll().count()) 190 { 191 qDebug() << "Loading search result Data: [" << Conference::getById(aConferenceId).title() << "] " << aDate; 192 mEvents = Event::getSearchResultByDate(QDate(aDate.year(), aDate.month(), aDate.day()), aConferenceId, "start"); 193 } 194 createTimeGroups(); 195 } 196 185 197 void EventModel::loadEventsByTrack(const QDate &aDate, int aConferenceId) 186 198 {
Note: See TracChangeset
for help on using the changeset viewer.