mirror of
https://github.com/YACReader/yacreader
synced 2025-07-14 11:04:25 -04:00
Use ints for colors instead of string literals
This commit is contained in:
@ -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);
|
||||
|
||||
|
Reference in New Issue
Block a user