mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 22:45:08 +00:00
12 lines
201 B
C++
12 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()
|
|
{
|
|
}
|