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()
|
||
|
|
{
|
||
|
|
}
|