diff options
author | Sergey Starosek <sergey.starosek@gmail.com> | 2015-10-14 14:08:01 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-10-14 05:51:13 -0700 |
commit | 5e93e8c4af8489120df0fe43da3710b713ada175 (patch) | |
tree | eac15d18923990c98c4dbf194cd089522bf856ed | |
parent | d5e48de567d91812261bff51b8b0108e82837088 (diff) | |
download | subsurface-5e93e8c4af8489120df0fe43da3710b713ada175.tar.gz |
Add app icon to statistics window
Signed-off-by: Sergey Starosek <sergey.starosek@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | qt-ui/mainwindow.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qt-ui/mainwindow.cpp b/qt-ui/mainwindow.cpp index f9bfd775b..d28c1c699 100644 --- a/qt-ui/mainwindow.cpp +++ b/qt-ui/mainwindow.cpp @@ -847,6 +847,7 @@ void MainWindow::on_actionYearlyStatistics_triggered() d.setWindowFlags(Qt::Window | Qt::CustomizeWindowHint | Qt::WindowCloseButtonHint | Qt::WindowTitleHint); d.setWindowTitle(tr("Yearly statistics")); + d.setWindowIcon(QIcon(":/subsurface-icon")); d.exec(); } |