1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 05:27:43 +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

@ -6,10 +6,10 @@
*/
#include "DesktopStatusWindow.h"
#include <LibGUI/ConnectionToWindowMangerServer.h>
#include <LibGUI/Desktop.h>
#include <LibGUI/Painter.h>
#include <LibGUI/Widget.h>
#include <LibGUI/WindowManagerServerConnection.h>
#include <LibGfx/Palette.h>
class DesktopStatusWidget : public GUI::Widget {
@ -63,7 +63,7 @@ public:
// Handle case where divider is clicked.
if (rect_for_desktop(row, col).contains(event.position()))
GUI::WindowManagerServerConnection::the().async_set_workspace(row, col);
GUI::ConnectionToWindowMangerServer::the().async_set_workspace(row, col);
}
virtual void mousewheel_event(GUI::MouseEvent& event) override
@ -82,7 +82,7 @@ public:
else
row = abs((int)row + direction) % vrows;
GUI::WindowManagerServerConnection::the().async_set_workspace(row, col);
GUI::ConnectionToWindowMangerServer::the().async_set_workspace(row, col);
}
unsigned current_row() const { return m_current_row; }