From b280253e602adae1ffbdf3409089645a66009a3f Mon Sep 17 00:00:00 2001 From: Lars Wendler Date: Sun, 24 Nov 2019 19:46:54 +0100 Subject: [PATCH] build: Fix bad include path tracks/labeltrack/ui/LabelTextHandle.cpp:25:10: fatal error: ../../../images/Cursors.h: No such file or directory 25 | #include "../../../images/Cursors.h" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ compilation terminated. Signed-off-by: Lars Wendler --- src/tracks/labeltrack/ui/LabelTextHandle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tracks/labeltrack/ui/LabelTextHandle.cpp b/src/tracks/labeltrack/ui/LabelTextHandle.cpp index 832bb0d18..967276ad7 100644 --- a/src/tracks/labeltrack/ui/LabelTextHandle.cpp +++ b/src/tracks/labeltrack/ui/LabelTextHandle.cpp @@ -22,7 +22,7 @@ Paul Licameli split from TrackPanel.cpp #include "../../../SelectionState.h" #include "../../../TrackPanelMouseEvent.h" #include "../../../ViewInfo.h" -#include "../../../images/Cursors.h" +#include "../../../../images/Cursors.h" #include