mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-22 17:29:01 +00:00
Userland: Rename WindowServerConnection=>ConnectionToWindowServer
This was done with CLion's automatic rename feature.
This commit is contained in:
parent
af132fdbd1
commit
935d023967
Notes:
sideshowbarker
2024-07-17 18:16:02 +09:00
Author: https://github.com/itamar8910
Commit: 935d023967
Pull-request: https://github.com/SerenityOS/serenity/pull/12760
43 changed files with 201 additions and 201 deletions
|
@ -10,8 +10,8 @@
|
|||
#include <AK/NonnullRefPtr.h>
|
||||
#include <AK/Vector.h>
|
||||
#include <LibCore/DirIterator.h>
|
||||
#include <LibGUI/ConnectionToWindowServer.h>
|
||||
#include <LibGUI/Model.h>
|
||||
#include <LibGUI/WindowServerConnection.h>
|
||||
#include <LibGfx/CursorParams.h>
|
||||
|
||||
class MouseCursorModel final : public GUI::Model {
|
||||
|
@ -60,7 +60,7 @@ public:
|
|||
{
|
||||
m_cursors.clear();
|
||||
|
||||
Core::DirIterator iterator(String::formatted("/res/cursor-themes/{}", GUI::WindowServerConnection::the().get_cursor_theme()), Core::DirIterator::Flags::SkipDots);
|
||||
Core::DirIterator iterator(String::formatted("/res/cursor-themes/{}", GUI::ConnectionToWindowServer::the().get_cursor_theme()), Core::DirIterator::Flags::SkipDots);
|
||||
|
||||
while (iterator.has_next()) {
|
||||
auto path = iterator.next_full_path();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue