mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-22 17:13:20 +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()
|
||
|
{
|
||
|
}
|
||
|
|