You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
950 B
31 lines
950 B
6 years ago
|
From 89db0fc72d2aad5e88d7da035b27b882453a8d05 Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?Robert-Andr=C3=A9=20Mauchin?= <zebob.m@gmail.com>
|
||
|
Date: Sun, 28 Apr 2019 21:46:14 +0200
|
||
|
Subject: [PATCH] Convert QStringLiteral to QLatin1String to keep compatibility
|
||
|
with Qt4
|
||
|
MIME-Version: 1.0
|
||
|
Content-Type: text/plain; charset=UTF-8
|
||
|
Content-Transfer-Encoding: 8bit
|
||
|
|
||
|
Signed-off-by: Robert-André Mauchin <zebob.m@gmail.com>
|
||
|
---
|
||
|
keychain_unix.cpp | 2 +-
|
||
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
||
|
|
||
|
diff --git a/keychain_unix.cpp b/keychain_unix.cpp
|
||
|
index 958927a..b9a8e9d 100644
|
||
|
--- a/keychain_unix.cpp
|
||
|
+++ b/keychain_unix.cpp
|
||
|
@@ -93,7 +93,7 @@ static bool isKwallet5Available()
|
||
|
// a wallet can be opened.
|
||
|
|
||
|
iface.setTimeout(500);
|
||
|
- QDBusMessage reply = iface.call(QStringLiteral("networkWallet"));
|
||
|
+ QDBusMessage reply = iface.call(QLatin1String("networkWallet"));
|
||
|
return reply.type() == QDBusMessage::ReplyMessage;
|
||
|
}
|
||
|
|
||
|
--
|
||
|
2.21.0
|
||
|
|