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

@ -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()