1 #include "conflictsdialog.h"
3 ConflictsDialog::ConflictsDialog(QWidget *aParent)
7 connect(container, SIGNAL(eventHasChanged(int)), this, SIGNAL(eventHasChanged(int)));
8 connect(container, SIGNAL(eventHasChanged(int)), container, SLOT(updateTreeViewModel(int)));
10 int confId = Conference::activeConference();
11 QDate startDate = Conference::getById(confId).start();
12 QDate endDate = Conference::getById(confId).end();
13 container->setDates(startDate, endDate);
16 ConflictsDialog::~ConflictsDialog()
18 disconnect(container, SIGNAL(eventHasChanged(int)), this, SIGNAL(eventHasChanged(int)));