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

LibGUI: Create an alias for Widget UnregisteredChildHandler

This commit is contained in:
Sam Atkins 2023-01-07 11:59:12 +00:00 committed by Linus Groh
parent 33f42e3490
commit 703da34947
4 changed files with 9 additions and 8 deletions

View file

@ -30,7 +30,7 @@ private:
void update_widget_size();
void update_widget_position();
void update_widget_min_size();
virtual ErrorOr<void> load_from_gml_ast(NonnullRefPtr<GUI::GML::Node> ast, ErrorOr<NonnullRefPtr<Core::Object>> (*unregistered_child_handler)(DeprecatedString const&)) override;
virtual ErrorOr<void> load_from_gml_ast(NonnullRefPtr<GUI::GML::Node> ast, UnregisteredChildHandler) override;
ScrollableContainerWidget();