Changeset 6f39595 for src/mvc/eventmodel.cpp
- Timestamp:
- 01/17/10 18:18:22 (13 years ago)
- Branches:
- master, qt5
- Children:
- 9f473ba
- Parents:
- c790268
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mvc/eventmodel.cpp
rc790268 r6f39595 131 131 } 132 132 133 void EventModel::loadFavEvents(const QDate &aDate, int aConferenceId) 134 { 135 mEvents.clear(); 136 137 // check for existence of the conference in the DB 138 if(Conference::getAll().count()) 139 { 140 qDebug() << "Loading FAV Conference Data: [" << Conference::getById(aConferenceId).title() << "] " << aDate; 141 mEvents = Event::getFavByDate(QDate(aDate.year(), aDate.month(), aDate.day()), aConferenceId); 142 } 143 createTimeGroups(); 144 } 145
Note: See TracChangeset
for help on using the changeset viewer.