mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
18 lines
248 B
C++
18 lines
248 B
C++
#include <LibGUI/GMenuItem.h>
|
|
#include <LibGUI/GAction.h>
|
|
|
|
GMenuItem::GMenuItem(Type type)
|
|
: m_type(type)
|
|
{
|
|
}
|
|
|
|
GMenuItem::GMenuItem(Retained<GAction>&& action)
|
|
: m_type(Action)
|
|
, m_action(move(action))
|
|
{
|
|
}
|
|
|
|
GMenuItem::~GMenuItem()
|
|
{
|
|
}
|
|
|