From 69be23c5f629884465dec98efcb9d5a2678b4df5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Fri, 18 Nov 2016 16:04:08 +0100 Subject: GH-1726 better failure detection for updates Instead of just checking if the new version started, make sure it is able to write its IPC key to a file and then use the key to connect to the process. --- libraries/LocalPeer/src/LocalPeer.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'libraries/LocalPeer/src') diff --git a/libraries/LocalPeer/src/LocalPeer.cpp b/libraries/LocalPeer/src/LocalPeer.cpp index db0c73e5..f71c62d8 100644 --- a/libraries/LocalPeer/src/LocalPeer.cpp +++ b/libraries/LocalPeer/src/LocalPeer.cpp @@ -108,6 +108,11 @@ ApplicationId ApplicationId::fromCustomId(const QString& id) return ApplicationId(QLatin1String("qtsingleapp-") + id); } +ApplicationId ApplicationId::fromRawString(const QString& id) +{ + return ApplicationId(id); +} + LocalPeer::LocalPeer(QObject * parent, const ApplicationId &appId) : QObject(parent), id(appId) { -- cgit v1.2.3