Date: Fri, 7 Sep 2018 12:20:47 +0000 (UTC) From: Adriaan de Groot <adridg@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r479188 - head/deskutils/superkaramba-kde4/files Message-ID: <201809071220.w87CKlhD091346@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: adridg Date: Fri Sep 7 12:20:46 2018 New Revision: 479188 URL: https://svnweb.freebsd.org/changeset/ports/479188 Log: Fix deskutils/superkaramba-kde4 with clang7. Reported by: jbeich Added: head/deskutils/superkaramba-kde4/files/patch-src_taskmanager.cpp (contents, props changed) Added: head/deskutils/superkaramba-kde4/files/patch-src_taskmanager.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/superkaramba-kde4/files/patch-src_taskmanager.cpp Fri Sep 7 12:20:46 2018 (r479188) @@ -0,0 +1,15 @@ +--- src/taskmanager.cpp.orig 2018-09-07 12:19:36 UTC ++++ src/taskmanager.cpp +@@ -908,10 +908,10 @@ bool Task::idMatch(const QString& id1, c + if (id1.isEmpty() || id2.isEmpty()) + return false; + +- if (id1.contains(id2) > 0) ++ if (id1.contains(id2)) + return true; + +- if (id2.contains(id1) > 0) ++ if (id2.contains(id1)) + return true; + + return false;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809071220.w87CKlhD091346>