diff --git a/src/apps/deskflow-gui/MainWindow.cpp b/src/apps/deskflow-gui/MainWindow.cpp index 7a5a636c9..98266f984 100644 --- a/src/apps/deskflow-gui/MainWindow.cpp +++ b/src/apps/deskflow-gui/MainWindow.cpp @@ -26,7 +26,7 @@ #include "gui/core/CoreProcess.h" #include "gui/ipc/DaemonIpcClient.h" #include "net/FingerprintDatabase.h" -#include "platform/wayland.h" +#include "platform/Wayland.h" #if defined(Q_OS_LINUX) #include "config.h" diff --git a/src/lib/deskflow/ClientApp.cpp b/src/lib/deskflow/ClientApp.cpp index 5e60e0c1f..2751a84ae 100644 --- a/src/lib/deskflow/ClientApp.cpp +++ b/src/lib/deskflow/ClientApp.cpp @@ -23,7 +23,7 @@ #include "net/SocketMultiplexer.h" #include "net/TCPSocketFactory.h" #include "net/XSocket.h" -#include "platform/wayland.h" +#include "platform/Wayland.h" #if SYSAPI_WIN32 #include "arch/win32/ArchMiscWindows.h" @@ -47,7 +47,7 @@ #endif #if defined(WINAPI_XWINDOWS) or defined(WINAPI_LIBEI) -#include "platform/wayland.h" +#include "platform/Wayland.h" #endif #if defined(MAC_OS_X_VERSION_10_7) diff --git a/src/lib/deskflow/ServerApp.cpp b/src/lib/deskflow/ServerApp.cpp index 3c374db49..cbf89d28e 100644 --- a/src/lib/deskflow/ServerApp.cpp +++ b/src/lib/deskflow/ServerApp.cpp @@ -50,7 +50,7 @@ #endif #if defined(WINAPI_XWINDOWS) or defined(WINAPI_LIBEI) -#include "platform/wayland.h" +#include "platform/Wayland.h" #endif #if defined(MAC_OS_X_VERSION_10_7) diff --git a/src/lib/gui/core/WaylandWarnings.h b/src/lib/gui/core/WaylandWarnings.h index 0a48915f2..a0d821b28 100644 --- a/src/lib/gui/core/WaylandWarnings.h +++ b/src/lib/gui/core/WaylandWarnings.h @@ -9,7 +9,7 @@ #include #include -#include "platform/wayland.h" +#include "platform/Wayland.h" namespace deskflow::gui::core { diff --git a/src/lib/platform/CMakeLists.txt b/src/lib/platform/CMakeLists.txt index 9707f60ff..1fd736da2 100644 --- a/src/lib/platform/CMakeLists.txt +++ b/src/lib/platform/CMakeLists.txt @@ -158,7 +158,7 @@ endif() include_directories(${inc}) # wayland.h is included to check for wayland support -add_library(platform STATIC ${PLATFORM_SOURCES} wayland.h) +add_library(platform STATIC ${PLATFORM_SOURCES} Wayland.h) target_link_libraries(platform client ${libs}) diff --git a/src/lib/platform/wayland.h b/src/lib/platform/Wayland.h similarity index 100% rename from src/lib/platform/wayland.h rename to src/lib/platform/Wayland.h