From: korrco Date: Fri, 22 Jan 2010 08:29:29 +0000 (+0000) Subject: caching removed X-Git-Tag: 0.5.0~215 X-Git-Url: https://git.toastfreeware.priv.at/toast/confclerk.git/commitdiff_plain/ab6110bc7176aae425c802a61d6785e85f9360f3 caching removed --- diff --git a/src/gui/mainwindow.cpp b/src/gui/mainwindow.cpp index f49c36b..67440e2 100644 --- a/src/gui/mainwindow.cpp +++ b/src/gui/mainwindow.cpp @@ -49,9 +49,6 @@ MainWindow::MainWindow(int aEventId, QWidget *aParent) connect(actionAboutQt, SIGNAL(triggered()), qApp, SLOT(aboutQt())); connect(actionAboutApplication, SIGNAL(triggered()), SLOT(aboutApp())); - //update track map - Track::updateTrackMap(); - connect(dayNavigator, SIGNAL(dateChanged(const QDate &)), SLOT(updateDayView(const QDate &))); connect(trackDayNavigator, SIGNAL(dateChanged(const QDate &)), SLOT(updateTracksView(const QDate &))); connect(favouriteDayNavigator, SIGNAL(dateChanged(const QDate &)), SLOT(updateFavouritesView(const QDate &))); @@ -187,8 +184,6 @@ void MainWindow::importSchedule() QDate aStartDate = Conference::getById(AppSettings::confId()).start(); QDate aEndDate = Conference::getById(AppSettings::confId()).end(); dayNavigator->setDates(aStartDate, aEndDate); - //update activity map - Track::updateTrackMap(); trackDayNavigator->setDates(aStartDate, aEndDate); } }