1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:07:44 +00:00

LibGUI: Add formatter for Widget.

This commit is contained in:
asynts 2021-01-09 00:12:42 +01:00 committed by Andreas Kling
parent 1160817a9e
commit 7235ddfd98

View file

@ -399,3 +399,7 @@ inline const Widget* Widget::parent_widget() const
return nullptr;
}
}
template<>
struct AK::Formatter<GUI::Widget> : AK::Formatter<Core::Object> {
};