summaryrefslogtreecommitdiff
path: root/Userland/Applets/Keymap
diff options
context:
space:
mode:
authorItamar <itamar8910@gmail.com>2022-02-25 12:37:23 +0200
committerAndreas Kling <kling@serenityos.org>2022-02-25 22:35:12 +0100
commitaf132fdbd183f82a55a8c03e1e1d2ba275f41067 (patch)
tree0efbc3fcc9afc718261379ffebd5679df0235eca /Userland/Applets/Keymap
parentd88da82e281e041c24d5c61194e7646926341610 (diff)
downloadserenity-af132fdbd183f82a55a8c03e1e1d2ba275f41067.zip
Userland: Rename WindowManagerServerConnection
Rename WindowManagerServerConnection=>ConnectionToWindowManagerServer. This was done with CLion's automatic rename feature.
Diffstat (limited to 'Userland/Applets/Keymap')
-rw-r--r--Userland/Applets/Keymap/KeymapStatusWindow.cpp2
-rw-r--r--Userland/Applets/Keymap/main.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Applets/Keymap/KeymapStatusWindow.cpp b/Userland/Applets/Keymap/KeymapStatusWindow.cpp
index d0b8c58900..659021c282 100644
--- a/Userland/Applets/Keymap/KeymapStatusWindow.cpp
+++ b/Userland/Applets/Keymap/KeymapStatusWindow.cpp
@@ -7,8 +7,8 @@
#include "KeymapStatusWindow.h"
#include <LibCore/Process.h>
+#include <LibGUI/ConnectionToWindowMangerServer.h>
#include <LibGUI/Painter.h>
-#include <LibGUI/WindowManagerServerConnection.h>
#include <LibKeyboard/CharacterMap.h>
void KeymapStatusWidget::mousedown_event(GUI::MouseEvent& event)
diff --git a/Userland/Applets/Keymap/main.cpp b/Userland/Applets/Keymap/main.cpp
index f4a32300e5..e22f27abc9 100644
--- a/Userland/Applets/Keymap/main.cpp
+++ b/Userland/Applets/Keymap/main.cpp
@@ -7,7 +7,7 @@
#include "KeymapStatusWindow.h"
#include <LibCore/System.h>
#include <LibGUI/Application.h>
-#include <LibGUI/WindowManagerServerConnection.h>
+#include <LibGUI/ConnectionToWindowMangerServer.h>
#include <LibMain/Main.h>
#include <WindowServer/Window.h>