Fix app icon and title for yearly statistics

Signed-off-by: Sergey Starosek <sergey.starosek@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Sergey Starosek 2014-01-10 22:31:03 +02:00 committed by Dirk Hohndel
parent ab830b1d4f
commit a8c0bf3e57

View file

@ -338,6 +338,8 @@ void MainWindow::on_actionYearlyStatistics_triggered()
view->setWindowModality(Qt::NonModal);
view->setMinimumWidth(600);
view->setAttribute(Qt::WA_QuitOnClose, false);
view->setWindowTitle(tr("Yearly Statistics"));
view->setWindowIcon(QIcon(":subsurface-icon"));
view->show();
}