Skip to content

Commit 0fe58fd

Browse files
jacobly0iamsergio
authored andcommitted
Fix filename case so that it will build on a case-sensitive filesystem.
1 parent 51d78ba commit 0fe58fd

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ else()
243243
endif()
244244

245245
if (WIN32)
246-
target_link_libraries(kddockwidgets PRIVATE Qt${QT_MAJOR_VERSION}::GuiPrivate Dwmapi)
246+
target_link_libraries(kddockwidgets PRIVATE Qt${QT_MAJOR_VERSION}::GuiPrivate dwmapi)
247247
elseif(NOT APPLE AND NOT EMSCRIPTEN AND NOT ${PROJECT_NAME}_QT6)
248248
find_package(Qt${QT_MAJOR_VERSION}X11Extras)
249249
target_link_libraries(kddockwidgets PUBLIC Qt${QT_MAJOR_VERSION}::X11Extras)

src/private/DebugWindow.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
#include <QTimer>
4040

4141
#ifdef Q_OS_WIN
42-
# include <Windows.h>
43-
# include <WinUser.h>
42+
# include <windows.h>
43+
# include <winuser.h>
4444
#endif
4545

4646
// clazy:excludeall=range-loop

src/private/DragController.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
#if defined(Q_OS_WIN)
3030
# include <QWindow>
31-
# include <Windows.h>
31+
# include <windows.h>
3232
#endif
3333

3434
using namespace KDDockWidgets;

src/private/FloatingWindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#include <QScopedValueRollback>
2828

2929
#if defined(Q_OS_WIN)
30-
# include <Windows.h>
30+
# include <windows.h>
3131
# include <dwmapi.h>
3232
#endif
3333

src/private/ObjectViewer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
#include <QDir>
3434

3535
#ifdef Q_OS_WIN
36-
# include <Windows.h>
36+
# include <windows.h>
3737
#endif
3838

3939
using namespace KDDockWidgets::Debug;

src/private/WidgetResizeHandler.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626

2727
#if defined(Q_OS_WIN)
2828
# include <QtGui/private/qhighdpiscaling_p.h>
29-
# include <Windowsx.h>
30-
# include <Windows.h>
29+
# include <windowsx.h>
30+
# include <windows.h>
3131
# if defined(Q_CC_MSVC)
3232
# pragma comment(lib,"User32.lib")
3333
# endif

tests/tst_docks.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
#endif
4848

4949
#ifdef Q_OS_WIN
50-
# include <Windows.h>
50+
# include <windows.h>
5151
#endif
5252

5353
using namespace KDDockWidgets;

0 commit comments

Comments
 (0)