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:
parent
03b6ff2bf0
commit
51484bec82
8 changed files with 17 additions and 17 deletions
25
Userland/Applets/WorkspacePicker/DesktopStatusWindow.h
Normal file
25
Userland/Applets/WorkspacePicker/DesktopStatusWindow.h
Normal 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;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue