mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-09 08:32:04 +02: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()
|
|
{
|
|
}
|