more on mainwindow

This commit is contained in:
Martin Brodbeck 2018-07-14 15:54:29 +02:00
parent a490dafb02
commit 31d46866f2
2 changed files with 13 additions and 3 deletions

View file

@ -2,5 +2,10 @@
MainWindow::MainWindow()
{
ui.setupUi(this);
}
ui_.setupUi(this);
connect(ui_.actionQuit, &QAction::triggered, qApp, QApplication::quit);
marketplace_ = std::make_unique<Marketplace>();
}