svn commit: r538092 - head/sysutils/plasma-pass/files
Tobias C. Berner
tcberner at FreeBSD.org
Sat Jun 6 14:13:25 UTC 2020
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();
More information about the svn-ports-all
mailing list