cmake-gui: Fix icon overlay on windows

Since commit 9175a378f5 (QtDialog: Add windows taskbar progress,
2018-11-17, v3.14.0-rc1~330^2) we've added a missing overlay icon.
This results in Windows falling back to a default overlay icon.
Simply drop this line.

Fixes: #19160
This commit is contained in:
Julien Jomier 2019-04-11 19:50:25 +02:00 committed by Brad King
parent 3c9dec0bdc
commit 12ef832c96

View File

@ -303,7 +303,6 @@ void CMakeSetupDialog::initialize()
#ifdef QT_WINEXTRAS
this->TaskbarButton = new QWinTaskbarButton(this);
this->TaskbarButton->setWindow(this->windowHandle());
this->TaskbarButton->setOverlayIcon(QIcon(":/loading.png"));
#endif
}