From 1deea3ba5512a3b8f0749b89eef3c4acefbf506a Mon Sep 17 00:00:00 2001 From: korrco Date: Mon, 25 Jan 2010 13:46:56 +0000 Subject: [PATCH] room view added - finished --- src/gui/mainwindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gui/mainwindow.cpp b/src/gui/mainwindow.cpp index f2f4873..a1e995c 100644 --- a/src/gui/mainwindow.cpp +++ b/src/gui/mainwindow.cpp @@ -212,6 +212,7 @@ void MainWindow::importSchedule() QDate aEndDate = Conference::getById(AppSettings::confId()).end(); dayNavigator->setDates(aStartDate, aEndDate); trackDayNavigator->setDates(aStartDate, aEndDate); + roomDayNavigator->setDates(aStartDate, aEndDate); } } @@ -368,6 +369,7 @@ void MainWindow::eventHasChanged(int aEventId) static_cast(trackTreeView->model())->updateModel(aEventId); static_cast(searchTreeView->model())->updateModel(aEventId); static_cast(nowTreeView->model())->updateModel(aEventId); + static_cast(roomTreeView->model())->updateModel(aEventId); } void MainWindow::tabHasChanged(int aIndex) -- 2.39.5