mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-28 12:18:25 +00:00
LibCore: Remove some hand-rolled type information from Core::Object
Both is_action() and is_window() can be answered by RTTI.
This commit is contained in:
@@ -142,7 +142,7 @@ void Window::show()
|
||||
Window* Window::find_parent_window()
|
||||
{
|
||||
for (auto* ancestor = parent(); ancestor; ancestor = ancestor->parent()) {
|
||||
if (ancestor->is_window())
|
||||
if (is<Window>(ancestor))
|
||||
return static_cast<Window*>(ancestor);
|
||||
}
|
||||
return nullptr;
|
||||
|
||||
Reference in New Issue
Block a user