1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-19 20:45:08 +00:00

Move WindowServer into Servers.

This commit is contained in:
Andreas Kling 2019-03-20 04:34:14 +01:00
parent 9120b05a40
commit d17a91f185
32 changed files with 14 additions and 14 deletions

View file

@ -1,18 +0,0 @@
#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()
{
}