mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-24 18:26:11 +03:00
Migrate away from deprecated function
`QStyle::standardPixmap()` is deprecated. PR #19660.
This commit is contained in:
parent
47439a7efd
commit
0404ff9fb3
2 changed files with 6 additions and 4 deletions
|
@ -158,12 +158,14 @@ void StatusBar::showRestartRequired()
|
||||||
{
|
{
|
||||||
// Restart required notification
|
// Restart required notification
|
||||||
const QString restartText = tr("qBittorrent needs to be restarted!");
|
const QString restartText = tr("qBittorrent needs to be restarted!");
|
||||||
QLabel *restartIconLbl = new QLabel(this);
|
|
||||||
restartIconLbl->setPixmap(style()->standardPixmap(QStyle::SP_MessageBoxWarning));
|
const QPixmap pixmap = style()->standardIcon(QStyle::SP_MessageBoxWarning).pixmap(Utils::Gui::smallIconSize());
|
||||||
|
auto *restartIconLbl = new QLabel(this);
|
||||||
|
restartIconLbl->setPixmap(pixmap);
|
||||||
restartIconLbl->setToolTip(restartText);
|
restartIconLbl->setToolTip(restartText);
|
||||||
insertWidget(0, restartIconLbl);
|
insertWidget(0, restartIconLbl);
|
||||||
|
|
||||||
QLabel *restartLbl = new QLabel(this);
|
auto *restartLbl = new QLabel(this);
|
||||||
restartLbl->setText(restartText);
|
restartLbl->setText(restartText);
|
||||||
insertWidget(1, restartLbl);
|
insertWidget(1, restartLbl);
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,7 +38,7 @@ namespace BitTorrent
|
||||||
struct SessionStatus;
|
struct SessionStatus;
|
||||||
}
|
}
|
||||||
|
|
||||||
class StatusBar : public QStatusBar
|
class StatusBar final : public QStatusBar
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
Q_DISABLE_COPY_MOVE(StatusBar)
|
Q_DISABLE_COPY_MOVE(StatusBar)
|
||||||
|
|
Loading…
Reference in a new issue