GWidget: Add placeholder setters for the backcolor/forecolor properties.

This commit is contained in:
Andreas Kling 2019-07-10 21:00:34 +02:00
commit f465de8f76
Notes: sideshowbarker 2024-07-19 13:20:46 +09:00

View file

@ -139,6 +139,10 @@ public:
void set_background_color(Color color) { m_background_color = color; }
void set_foreground_color(Color color) { m_foreground_color = color; }
// FIXME: Implement these.
void set_backcolor(const StringView&) { }
void set_forecolor(const StringView&) { }
GWindow* window()
{
if (auto* pw = parent_widget())