blob: 4f6b0b2dfbd8b1e00e0fa2be234fb03d632bbc86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <LibGUI/GEvent.h>
#include <LibGUI/GObject.h>
GChildEvent::GChildEvent(Type type, GObject& child)
: GEvent(type)
, m_child(child.make_weak_ptr())
{
}
GChildEvent::~GChildEvent()
{
}
|