mirror of
https://github.com/YACReader/yacreader
synced 2025-09-03 20:05:05 -04:00
Use ints for colors instead of string literals
This commit is contained in:
@ -47,7 +47,7 @@ void NotificationsLabelWidget::paintEvent(QPaintEvent *)
|
||||
QPainterPath path;
|
||||
path.addRoundedRect(QRectF(0, 0, width(), height()), 5.0, 5.0);
|
||||
painter.setPen(Qt::NoPen);
|
||||
painter.fillPath(path, QColor("#BB000000"));
|
||||
painter.fillPath(path, QColor(0xBB000000));
|
||||
painter.drawPath(path);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user