1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:57:35 +00:00

LibGUI: Fix typo in ConnectionToWindowManagerServer

This commit is contained in:
Olivier De Cannière 2022-06-01 13:41:34 +02:00 committed by Andreas Kling
parent 524f4be5af
commit 6c202ee4a9
12 changed files with 41 additions and 41 deletions

View file

@ -7,7 +7,7 @@
#include "TaskbarButton.h"
#include "WindowList.h"
#include <LibGUI/Action.h>
#include <LibGUI/ConnectionToWindowMangerServer.h>
#include <LibGUI/ConnectionToWindowManagerServer.h>
#include <LibGUI/ConnectionToWindowServer.h>
#include <LibGUI/Painter.h>
#include <LibGfx/Font/Font.h>
@ -21,7 +21,7 @@ TaskbarButton::TaskbarButton(WindowIdentifier const& identifier)
void TaskbarButton::context_menu_event(GUI::ContextMenuEvent&)
{
GUI::ConnectionToWindowMangerServer::the().async_popup_window_menu(
GUI::ConnectionToWindowManagerServer::the().async_popup_window_menu(
m_identifier.client_id(),
m_identifier.window_id(),
screen_relative_rect().location());
@ -29,7 +29,7 @@ void TaskbarButton::context_menu_event(GUI::ContextMenuEvent&)
void TaskbarButton::update_taskbar_rect()
{
GUI::ConnectionToWindowMangerServer::the().async_set_window_taskbar_rect(
GUI::ConnectionToWindowManagerServer::the().async_set_window_taskbar_rect(
m_identifier.client_id(),
m_identifier.window_id(),
screen_relative_rect());
@ -37,7 +37,7 @@ void TaskbarButton::update_taskbar_rect()
void TaskbarButton::clear_taskbar_rect()
{
GUI::ConnectionToWindowMangerServer::the().async_set_window_taskbar_rect(
GUI::ConnectionToWindowManagerServer::the().async_set_window_taskbar_rect(
m_identifier.client_id(),
m_identifier.window_id(),
{});