Date: Mon, 22 Oct 2018 16:43:26 +0000 (UTC) From: "Tobias C. Berner" <tcberner@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r482755 - in head/x11-themes/kf5-kiconthemes: . files Message-ID: <201810221643.w9MGhQgg080590@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tcberner Date: Mon Oct 22 16:43:26 2018 New Revision: 482755 URL: https://svnweb.freebsd.org/changeset/ports/482755 Log: x11-themes/kf5-kiconthemes: add upstream fix for runtime crash Added: head/x11-themes/kf5-kiconthemes/files/ head/x11-themes/kf5-kiconthemes/files/patch-git_e0006451 (contents, props changed) Modified: head/x11-themes/kf5-kiconthemes/Makefile Modified: head/x11-themes/kf5-kiconthemes/Makefile ============================================================================== --- head/x11-themes/kf5-kiconthemes/Makefile Mon Oct 22 16:41:14 2018 (r482754) +++ head/x11-themes/kf5-kiconthemes/Makefile Mon Oct 22 16:43:26 2018 (r482755) @@ -2,6 +2,7 @@ PORTNAME= kiconthemes DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= x11-themes kde kde-frameworks MAINTAINER= kde@FreeBSD.org Added: head/x11-themes/kf5-kiconthemes/files/patch-git_e0006451 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-themes/kf5-kiconthemes/files/patch-git_e0006451 Mon Oct 22 16:43:26 2018 (r482755) @@ -0,0 +1,25 @@ +From e0006451d5b03a9e15277ad9e7b1c8a74864b532 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Ivan=20=C4=8Cuki=C4=87?= <ivan.cukic@kde.org> +Date: Mon, 8 Oct 2018 23:12:34 +0200 +Subject: Fixing a copy-paste error + +--- + src/kicondialog.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/kicondialog.cpp b/src/kicondialog.cpp +index 1f4193e..12ccb4f 100644 +--- src/kicondialog.cpp ++++ src/kicondialog.cpp +@@ -416,7 +416,7 @@ void KIconDialog::KIconDialogPrivate::_k_slotAcceptIcons() + static bool sortByFileName(const QString &path1, const QString &path2) + { + const QString fileName1 = path1.mid(path1.lastIndexOf(QLatin1Char('/')) + 1); +- const QString fileName2 = path2.mid(path1.lastIndexOf(QLatin1Char('/')) + 1); ++ const QString fileName2 = path2.mid(path2.lastIndexOf(QLatin1Char('/')) + 1); + return QString::compare(fileName1, fileName2, Qt::CaseInsensitive) < 0; + } + +-- +cgit v0.11.2 +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810221643.w9MGhQgg080590>