void clearModel();
protected:
- virtual void loadEvents( const QDate &aDate, const int aConferenceId )
- {
- Q_UNUSED(aDate);
- Q_UNUSED(aConferenceId);
- }
+ virtual void loadEvents( const QDate &aDate, const int aConferenceId ) = 0;
signals:
void eventHasChanged(int aEventId, bool aReloadModel);
// check for existence of the conference in the DB
if(Conference::getAll().count())
{
- qDebug() << "Loading search result Data: [" << Conference::getById(aConferenceId).title() << "] " << aDate;
+ // qDebug() << "Loading search result Data: [" << Conference::getById(aConferenceId).title() << "] " << aDate;
try{
mEvents = Event::getSearchResultByDate(QDate(aDate.year(), aDate.month(), aDate.day()), aConferenceId, "start");
}