Some color cleanup.

This commit is contained in:
Andreas Kling 2018-10-12 23:02:23 +02:00
commit e16d145cb4
Notes: sideshowbarker 2024-07-19 18:49:38 +09:00
9 changed files with 27 additions and 22 deletions

View file

@ -8,8 +8,8 @@
Widget::Widget(Widget* parent)
: Object(parent)
{
m_backgroundColor = Color(255, 255, 255);
m_foregroundColor = Color(0, 0, 0);
m_backgroundColor = Color::White;
m_foregroundColor = Color::Black;
}
Widget::~Widget()