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

Userland: Rename WindowManagerServerConnection

Rename WindowManagerServerConnection=>ConnectionToWindowManagerServer.

This was done with CLion's automatic rename feature.
This commit is contained in:
Itamar 2022-02-25 12:37:23 +02:00 committed by Andreas Kling
parent d88da82e28
commit af132fdbd1
12 changed files with 41 additions and 41 deletions

View file

@ -7,8 +7,8 @@
#include "TaskbarButton.h"
#include "WindowList.h"
#include <LibGUI/Action.h>
#include <LibGUI/ConnectionToWindowMangerServer.h>
#include <LibGUI/Painter.h>
#include <LibGUI/WindowManagerServerConnection.h>
#include <LibGUI/WindowServerConnection.h>
#include <LibGfx/Font.h>
#include <LibGfx/Palette.h>
@ -25,7 +25,7 @@ TaskbarButton::~TaskbarButton()
void TaskbarButton::context_menu_event(GUI::ContextMenuEvent&)
{
GUI::WindowManagerServerConnection::the().async_popup_window_menu(
GUI::ConnectionToWindowMangerServer::the().async_popup_window_menu(
m_identifier.client_id(),
m_identifier.window_id(),
screen_relative_rect().location());
@ -33,7 +33,7 @@ void TaskbarButton::context_menu_event(GUI::ContextMenuEvent&)
void TaskbarButton::update_taskbar_rect()
{
GUI::WindowManagerServerConnection::the().async_set_window_taskbar_rect(
GUI::ConnectionToWindowMangerServer::the().async_set_window_taskbar_rect(
m_identifier.client_id(),
m_identifier.window_id(),
screen_relative_rect());
@ -41,7 +41,7 @@ void TaskbarButton::update_taskbar_rect()
void TaskbarButton::clear_taskbar_rect()
{
GUI::WindowManagerServerConnection::the().async_set_window_taskbar_rect(
GUI::ConnectionToWindowMangerServer::the().async_set_window_taskbar_rect(
m_identifier.client_id(),
m_identifier.window_id(),
{});