1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-22 14:12:10 +00:00

WindowServer: Remove Clock from server.

We have clock applet.
This commit is contained in:
Hüseyin ASLITÜRK 2019-12-27 21:32:52 +03:00 committed by Andreas Kling
parent 3d4dddd111
commit e50deb55d3
3 changed files with 6 additions and 36 deletions

View file

@ -2,7 +2,6 @@
#include "WSMenu.h"
#include <LibCore/CObject.h>
#include <LibCore/CTimer.h>
#include <WindowServer/WSWindow.h>
class AClientConnection;
@ -53,7 +52,6 @@ private:
RefPtr<WSWindow> m_window;
String m_username;
RefPtr<CTimer> m_timer;
WeakPtr<WSMenu> m_current_menu;
Vector<WeakPtr<WSMenu>> m_open_menu_stack;
@ -61,7 +59,6 @@ private:
Vector<WeakPtr<WSWindow>> m_applets;
Rect m_username_rect;
Rect m_time_rect;
bool m_needs_window_resize { false };
bool m_bar_open { false };