mirror of
https://github.com/itay-grudev/SingleApplication.git
synced 2025-01-15 08:52:08 +08:00
Update singleapplication_p.cpp
This commit is contained in:
parent
a8aa298aa1
commit
cc96fea921
@ -146,7 +146,7 @@ void SingleApplicationPrivate::genBlockServerName()
|
|||||||
if( ! (options & SingleApplication::Mode::ExcludeAppPath) ){
|
if( ! (options & SingleApplication::Mode::ExcludeAppPath) ){
|
||||||
#ifdef Q_OS_WIN
|
#ifdef Q_OS_WIN
|
||||||
appData.addData( SingleApplication::app_t::applicationFilePath().toLower().toUtf8() );
|
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
|
// 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
|
// instead of applicationPath() as each instance is launched with its own executable path
|
||||||
const QByteArray appImagePath = qgetenv( "APPIMAGE" );
|
const QByteArray appImagePath = qgetenv( "APPIMAGE" );
|
||||||
@ -154,7 +154,9 @@ void SingleApplicationPrivate::genBlockServerName()
|
|||||||
appData.addData( SingleApplication::app_t::applicationFilePath().toUtf8() );
|
appData.addData( SingleApplication::app_t::applicationFilePath().toUtf8() );
|
||||||
} else { // Running as AppImage: Use absolute path to AppImage file
|
} else { // Running as AppImage: Use absolute path to AppImage file
|
||||||
appData.addData( appImagePath );
|
appData.addData( appImagePath );
|
||||||
}
|
};
|
||||||
|
#else
|
||||||
|
appData.addData( SingleApplication::app_t::applicationFilePath().toUtf8() );
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user