summaryrefslogtreecommitdiff
path: root/net-libs/signond/files/0004-Port-away-from-deprecated-QString-SplitBehavior.patch
blob: 7bf3fe2db65062942012e7bcae589d8d5ee9984f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
https://gitlab.com/accounts-sso/signond/-/merge_requests/36

From b48507f58d66356fbcdd349d14e6e145a4a60bbd Mon Sep 17 00:00:00 2001
From: Nicolas Fella <nicolas.fella@gmx.de>
Date: Tue, 5 Jul 2022 17:38:08 +0200
Subject: [PATCH 04/11] Port away from deprecated QString::SplitBehavior

---
 src/signond/signonidentityinfo.cpp | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/src/signond/signonidentityinfo.cpp b/src/signond/signonidentityinfo.cpp
index a5ae15d..bf7985f 100644
--- a/src/signond/signonidentityinfo.cpp
+++ b/src/signond/signonidentityinfo.cpp
@@ -27,6 +27,7 @@
 #include <QDBusArgument>
 #include <QDataStream>
 #include <QDebug>
+#include <QtGlobal>
 
 namespace SignonDaemonNS {
 
@@ -104,7 +105,11 @@ bool SignonIdentityInfo::checkMethodAndMechanism(const QString &method,
      * mechanisms is allowed.
      */
     QStringList mechanisms =
+#if QT_VERSION >= QT_VERSION_CHECK(5, 15, 0)
+        mechanism.split(QLatin1Char(' '), Qt::SkipEmptyParts);
+#else
         mechanism.split(QLatin1Char(' '), QString::SkipEmptyParts);
+#endif
 
     /* if the list is empty of it has only one element, then we already know
      * that it didn't pass the previous checks */
-- 
2.43.0