More hacking on Widgets.

This commit is contained in:
Andreas Kling 2018-10-11 01:48:09 +02:00
commit f337616741
Notes: sideshowbarker 2024-07-19 18:51:06 +09:00
15 changed files with 135 additions and 19 deletions

View file

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