mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-27 11:48:32 +00:00
19 lines
252 B
C++
19 lines
252 B
C++
#include <LibGUI/GMenuItem.h>
|
|
|
|
GMenuItem::GMenuItem(Type type)
|
|
: m_type(type)
|
|
{
|
|
}
|
|
|
|
GMenuItem::GMenuItem(unsigned identifier, const String& text)
|
|
: m_type(Text)
|
|
, m_identifier(identifier)
|
|
, m_text(text)
|
|
{
|
|
}
|
|
|
|
GMenuItem::~GMenuItem()
|
|
{
|
|
}
|
|
|