diff options
author | asynts <asynts@gmail.com> | 2021-01-09 00:12:42 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-09 21:11:09 +0100 |
commit | 7235ddfd98a2c718afe7d773ed24db0720f2c4db (patch) | |
tree | 303b3278aa56501c0213c9e078ac58cece13a181 | |
parent | 1160817a9e3b0084ab2be469a21626354a1b0afd (diff) | |
download | serenity-7235ddfd98a2c718afe7d773ed24db0720f2c4db.zip |
LibGUI: Add formatter for Widget.
-rw-r--r-- | Libraries/LibGUI/Widget.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Libraries/LibGUI/Widget.h b/Libraries/LibGUI/Widget.h index 692d92378f..4eb84c6aff 100644 --- a/Libraries/LibGUI/Widget.h +++ b/Libraries/LibGUI/Widget.h @@ -399,3 +399,7 @@ inline const Widget* Widget::parent_widget() const return nullptr; } } + +template<> +struct AK::Formatter<GUI::Widget> : AK::Formatter<Core::Object> { +}; |