1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 13:47:35 +00:00

Everywhere: Replace "virtual desktop" => "workspace"

This commit is contained in:
Andreas Kling 2021-11-13 12:11:35 +01:00
parent 8417c0fb1e
commit d21dc1f451
27 changed files with 103 additions and 103 deletions

View file

@ -37,8 +37,8 @@ private:
void update_applet_area();
bool is_window_on_current_virtual_desktop(::Window&) const;
void virtual_desktop_change_event(unsigned, unsigned);
bool is_window_on_current_workspace(::Window&) const;
void workspace_change_event(unsigned, unsigned);
void set_start_button_font(Gfx::Font const&);
@ -53,6 +53,6 @@ private:
RefPtr<Desktop::AppFile> m_assistant_app_file;
unsigned m_current_virtual_desktop_row { 0 };
unsigned m_current_virtual_desktop_column { 0 };
unsigned m_current_workspace_row { 0 };
unsigned m_current_workspace_column { 0 };
};