From cc96fea921f9467aecaecad03bb823a60142b46f Mon Sep 17 00:00:00 2001 From: Itay Grudev Date: Mon, 20 Sep 2021 16:32:42 +0300 Subject: Update singleapplication_p.cpp --- singleapplication_p.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/singleapplication_p.cpp b/singleapplication_p.cpp index bce1c49..4568573 100644 --- a/singleapplication_p.cpp +++ b/singleapplication_p.cpp @@ -146,7 +146,7 @@ void SingleApplicationPrivate::genBlockServerName() if( ! (options & SingleApplication::Mode::ExcludeAppPath) ){ #ifdef Q_OS_WIN appData.addData( SingleApplication::app_t::applicationFilePath().toLower().toUtf8() ); -#else +#elseif defined(Q_OS_LINUX) // If the application is running as an AppImage then the APPIMAGE env var should be used // instead of applicationPath() as each instance is launched with its own executable path const QByteArray appImagePath = qgetenv( "APPIMAGE" ); @@ -154,7 +154,9 @@ void SingleApplicationPrivate::genBlockServerName() appData.addData( SingleApplication::app_t::applicationFilePath().toUtf8() ); } else { // Running as AppImage: Use absolute path to AppImage file appData.addData( appImagePath ); - } + }; +#else + appData.addData( SingleApplication::app_t::applicationFilePath().toUtf8() ); #endif } -- cgit v1.2.1