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/kate/kate-15.12.0.patch | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 kde/patch/kate/kate-15.12.0.patch (limited to 'kde/patch/kate/kate-15.12.0.patch') diff --git a/kde/patch/kate/kate-15.12.0.patch b/kde/patch/kate/kate-15.12.0.patch deleted file mode 100644 index 25067f4..0000000 --- a/kde/patch/kate/kate-15.12.0.patch +++ /dev/null @@ -1,31 +0,0 @@ -From: Michal Humpula -Date: Sun, 29 Nov 2015 10:24:42 +0000 -Subject: fix opening new files trough dbus -X-Git-Url: http://quickgit.kde.org/?p=kate.git&a=commitdiff&h=d61b121264d7b43d41c1c6417a18bbfb9078eb9d ---- -fix opening new files trough dbus - -REVIEW: 126197 ---- - - ---- a/urlinfo.h -+++ b/urlinfo.h -@@ -33,7 +33,7 @@ - : cursor(KTextEditor::Cursor::invalid()) - { - // convert to an url -- const QRegularExpression withProtocol(QStringLiteral("^[a-zA-Z]+:")); // TODO: remove after Qt supports this on its own -+ const QRegularExpression withProtocol(QStringLiteral("^[a-zA-Z]+://")); // TODO: remove after Qt supports this on its own - if (withProtocol.match(path).hasMatch()) { - url = QUrl::fromUserInput(path); - } else { -@@ -50,7 +50,7 @@ - int line = match.captured(1).toInt() - 1; - // don't use an invalid column when the line is valid - int column = qMax(0, match.captured(2).toInt() - 1); -- url = QUrl::fromLocalFile(path); -+ url = QUrl::fromLocalFile(QDir::current().absoluteFilePath(path)); - cursor = {line, column}; - } - } -- cgit v1.2.3