Use ints for colors instead of string literals

This commit is contained in:
Luis Ángel San Martín
2021-09-30 22:01:07 +02:00
parent d8cb61314d
commit cc927de7de
7 changed files with 7 additions and 7 deletions

View File

@ -85,7 +85,7 @@ BookmarksDialog::BookmarksDialog(QWidget *parent)
QPalette Pal(palette());
// set black background
Pal.setColor(QPalette::Background, QColor("#454545"));
Pal.setColor(QPalette::Background, QColor(0x454545));
this->setAutoFillBackground(true);
this->setPalette(Pal);