mirror of
https://github.com/YACReader/yacreader
synced 2025-07-14 02:54:46 -04:00
Use ints for colors instead of string literals
This commit is contained in:
@ -82,7 +82,7 @@ void PageLabelWidget::paintEvent(QPaintEvent *)
|
||||
{
|
||||
QPainter painter(this);
|
||||
|
||||
painter.fillRect(0, 0, width(), height(), QColor("#BB000000"));
|
||||
painter.fillRect(0, 0, width(), height(), QColor(0xBB000000));
|
||||
}
|
||||
|
||||
void PageLabelWidget::updatePosition()
|
||||
|
Reference in New Issue
Block a user