mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 19:29:16 +00:00
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()
|
|
{
|
|
}
|