mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-25 05:55:13 +00:00
18 lines
252 B
C++
18 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()
|
|
{
|
|
}
|
|
|