linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / qtkeychain / 0001-Fixes-build-with-Qt4.patch
blob4cd7214e61e271bc69d8889f9231b0e0bd7fbcb8
1 From f72e5b67ee1137a0ccd57db5d077a197b01b3cdc Mon Sep 17 00:00:00 2001
2 From: Samuel Dionne-Riel <samuel@dionne-riel.com>
3 Date: Tue, 4 Sep 2018 23:19:29 -0400
4 Subject: [PATCH] Fixes build with Qt4.
6 ---
7 keychain_unix.cpp | 2 +-
8 1 file changed, 1 insertion(+), 1 deletion(-)
10 diff --git a/keychain_unix.cpp b/keychain_unix.cpp
11 index 30b26c3..b27ebef 100644
12 --- a/keychain_unix.cpp
13 +++ b/keychain_unix.cpp
14 @@ -91,7 +91,7 @@ static bool isKwallet5Available()
15 // a wallet can be opened.
17 iface.setTimeout(500);
18 - QDBusMessage reply = iface.call(QStringLiteral("networkWallet"));
19 + QDBusMessage reply = iface.call("networkWallet");
20 return reply.type() == QDBusMessage::ReplyMessage;
23 --
24 2.16.4