mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
497300c492
Call set_active_widget(GWidget*) to put a new widget on top.
13 lines
201 B
C++
13 lines
201 B
C++
#include <LibGUI/GEvent.h>
|
|
#include <LibGUI/GObject.h>
|
|
|
|
GChildEvent::GChildEvent(Type type, GObject& child)
|
|
: GEvent(type)
|
|
, m_child(child.make_weak_ptr())
|
|
{
|
|
}
|
|
|
|
GChildEvent::~GChildEvent()
|
|
{
|
|
}
|