Skip to content

Commit 1910698

Browse files
committed
checked todo
1 parent 67361a0 commit 1910698

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

AutoUpdaterGui/updateinfodialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ UpdateInfoDialog::UpdateInfoDialog(QWidget *parent) :
3232
if(QApplication::windowIcon().isNull())
3333
this->ui->imageLabel->hide();
3434
else {
35-
this->ui->imageLabel->show();//TODO icon ok? or app icon?!?
35+
this->ui->imageLabel->show();
3636
this->ui->imageLabel->setPixmap(QIcon(QStringLiteral(":/QtAutoUpdater/icons/update.ico")).pixmap(64, 64));
3737
}
3838
}

Tests/WidgetsTest/main.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ int main(int argc, char *argv[])
77
{
88
QApplication a(argc, argv);
99
QApplication::setWindowIcon(QIcon(":/icons/main.ico"));
10+
QApplication::setApplicationDisplayName("Widgets-Test");
1011
MainWindow w;
1112
w.show();
1213

0 commit comments

Comments
 (0)