Move xcursortheme.{h,cpp} to utils/

utils/ seems like a better place for this helper.
This commit is contained in:
Vlad Zahorodnii 2022-09-02 11:18:15 +03:00
parent 4f20e9216f
commit 82c09653aa
6 changed files with 3 additions and 3 deletions

View file

@ -17,13 +17,13 @@
#include "pointer_input.h" #include "pointer_input.h"
#include "screenedge.h" #include "screenedge.h"
#include "screens.h" #include "screens.h"
#include "utils/xcursortheme.h"
#include "virtualdesktops.h" #include "virtualdesktops.h"
#include "wayland/clientconnection.h" #include "wayland/clientconnection.h"
#include "wayland/seat_interface.h" #include "wayland/seat_interface.h"
#include "wayland_server.h" #include "wayland_server.h"
#include "window.h" #include "window.h"
#include "workspace.h" #include "workspace.h"
#include "xcursortheme.h"
#include <kwineffects.h> #include <kwineffects.h>
#include <KWayland/Client/buffer.h> #include <KWayland/Client/buffer.h>

View file

@ -158,7 +158,6 @@ target_sources(kwin PRIVATE
x11eventfilter.cpp x11eventfilter.cpp
x11syncmanager.cpp x11syncmanager.cpp
x11window.cpp x11window.cpp
xcursortheme.cpp
xdgactivationv1.cpp xdgactivationv1.cpp
xdgshellintegration.cpp xdgshellintegration.cpp
xdgshellwindow.cpp xdgshellwindow.cpp

View file

@ -13,7 +13,7 @@
#include "cursor.h" #include "cursor.h"
#include "input.h" #include "input.h"
#include "xcursortheme.h" #include "utils/xcursortheme.h"
#include <QElapsedTimer> #include <QElapsedTimer>
#include <QObject> #include <QObject>

View file

@ -9,4 +9,5 @@ target_sources(kwin PRIVATE
subsurfacemonitor.cpp subsurfacemonitor.cpp
udev.cpp udev.cpp
xcbutils.cpp xcbutils.cpp
xcursortheme.cpp
) )