From 52b1f1cb9f8d4e1fb1fcbde59930a105a819b0b4 Mon Sep 17 00:00:00 2001 From: Eric Hameleers Date: Thu, 30 Jul 2020 19:45:19 +0200 Subject: Cleanup unused KDE patches Thanks to Patrick Volkerding for the effort. --- kde/patch/kdenlive/kdenlive_gcc7.patch | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 kde/patch/kdenlive/kdenlive_gcc7.patch (limited to 'kde/patch/kdenlive') diff --git a/kde/patch/kdenlive/kdenlive_gcc7.patch b/kde/patch/kdenlive/kdenlive_gcc7.patch deleted file mode 100644 index a7ddb90..0000000 --- a/kde/patch/kdenlive/kdenlive_gcc7.patch +++ /dev/null @@ -1,32 +0,0 @@ -# Make kdenlive compile with gcc7 - ---- kdenlive-17.04.1/src/profiles/tree/profiletreemodel.cpp.orig 2017-05-08 19:52:35.000000000 +0200 -+++ kdenlive-17.04.1/src/profiles/tree/profiletreemodel.cpp 2017-05-19 08:09:04.986909338 +0200 -@@ -27,6 +27,7 @@ - #include - #include - #include -+#include - - - class ProfileItem ---- kdenlive-17.04.1/src/scopes/audioscopes/spectrogram.cpp.orig 2017-05-08 19:52:35.000000000 +0200 -+++ kdenlive-17.04.1/src/scopes/audioscopes/spectrogram.cpp 2017-05-19 08:09:04.993910503 +0200 -@@ -241,7 +241,7 @@ - x = leftDist + (m_innerScopeRect.width() - 1) * ((float)hz) / m_freqMax; - - // Hide text if it would overlap with the text drawn at the mouse position -- hideText = m_aTrackMouse->isChecked() && m_mouseWithinWidget && abs(x - (leftDist + mouseX + 20)) < (int) minDistX + 16 -+ hideText = m_aTrackMouse->isChecked() && m_mouseWithinWidget && abs(x - ((int)leftDist + mouseX + 20)) < (int) minDistX + 16 - && mouseX < m_innerScopeRect.width() && mouseX >= 0; - - if (x <= rightBorder) { -@@ -268,7 +268,7 @@ - } - // Draw the line at the very right (maximum frequency) - x = leftDist + m_innerScopeRect.width() - 1; -- hideText = m_aTrackMouse->isChecked() && m_mouseWithinWidget && abs(x - (leftDist + mouseX + 30)) < (int) minDistX -+ hideText = m_aTrackMouse->isChecked() && m_mouseWithinWidget && abs(x - ((int)leftDist + mouseX + 30)) < (int) minDistX - && mouseX < m_innerScopeRect.width() && mouseX >= 0; - davinci.drawLine(x, topDist, x, topDist + m_innerScopeRect.height() + 6); - if (!hideText) { -- cgit v1.2.3-65-gdbad