Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 6 Jun 2020 14:13:24 +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: r538092 - head/sysutils/plasma-pass/files
Message-ID:  <202006061413.056EDON0029624@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tcberner
Date: Sat Jun  6 14:13:24 2020
New Revision: 538092
URL: https://svnweb.freebsd.org/changeset/ports/538092

Log:
  sysutils/plasma-pass: prepare for Qt5-5.15

Added:
  head/sysutils/plasma-pass/files/
  head/sysutils/plasma-pass/files/patch-plugin_passwordfiltermodel.cpp   (contents, props changed)

Added: head/sysutils/plasma-pass/files/patch-plugin_passwordfiltermodel.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/plasma-pass/files/patch-plugin_passwordfiltermodel.cpp	Sat Jun  6 14:13:24 2020	(r538092)
@@ -0,0 +1,16 @@
+Obtained from: https://github.com/KDE/plasma-pass/commit/3fb633159ca4a1db166d5c54bbc025f71aba1652
+
+--- plugin/passwordfiltermodel.cpp.orig	2020-06-06 09:37:44 UTC
++++ plugin/passwordfiltermodel.cpp
+@@ -79,7 +79,11 @@ void PasswordFilterModel::delayedUpdateFilter()
+     Q_ASSERT(sender() == &mUpdateTimer);
+ 
+     mFilter = mUpdateTimer.property(newFilterProperty).toString();
++#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
+     mParts = mFilter.splitRef(QLatin1Char('/'), QString::SkipEmptyParts);
++#else
++    mParts = mFilter.splitRef(QLatin1Char('/'), Qt::SkipEmptyParts);
++#endif
+     Q_EMIT passwordFilterChanged();
+     mSortingLookup.clear();
+     invalidate();



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202006061413.056EDON0029624>