1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:47:44 +00:00

Applets: Rename DesktopPicker => WorkspacePicker

This is consistent with the rest of the system.
This commit is contained in:
Andreas Kling 2021-11-23 15:15:43 +01:00
parent 03b6ff2bf0
commit 51484bec82
8 changed files with 17 additions and 17 deletions

View file

@ -0,0 +1,25 @@
/*
* Copyright (c) 2021, Peter Elliott <pelliott@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibGUI/Window.h>
class DesktopStatusWidget;
class DesktopStatusWindow : public GUI::Window {
C_OBJECT(DesktopStatusWindow);
public:
virtual ~DesktopStatusWindow() override;
virtual void wm_event(GUI::WMEvent&) override;
private:
DesktopStatusWindow();
DesktopStatusWidget* m_widget;
};