mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-12 09:57:00 +02:00
19 lines
317 B
C++
19 lines
317 B
C++
#include "WSMenuItem.h"
|
|
|
|
WSMenuItem::WSMenuItem(unsigned identifier, const String& text, const String& shortcut_text)
|
|
: m_type(Text)
|
|
, m_identifier(identifier)
|
|
, m_text(text)
|
|
, m_shortcut_text(shortcut_text)
|
|
{
|
|
}
|
|
|
|
WSMenuItem::WSMenuItem(Type type)
|
|
: m_type(type)
|
|
{
|
|
}
|
|
|
|
WSMenuItem::~WSMenuItem()
|
|
{
|
|
}
|