mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-29 04:37:55 +00:00
LibGUI: Add GMenu* and GApplication classes.
This commit is contained in:
18
LibGUI/GMenuItem.cpp
Normal file
18
LibGUI/GMenuItem.cpp
Normal file
@@ -0,0 +1,18 @@
|
||||
#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()
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user