From ddb9c84a1d4994e8c7a9ae04aacd4e890826a871 Mon Sep 17 00:00:00 2001 From: Vitaly Zaitsev Date: Fri, 10 May 2019 08:54:07 +0200 Subject: [PATCH] Allow GNU/Linux maintainers to forward launcher name. Use optional compiler directive -DTDESKTOP_LAUNCHER_FILENAME to forward required XDG desktop file name. If not specified, fallback to default value will be used. Signed-off-by: Vitaly Zaitsev --- Telegram/SourceFiles/core/launcher.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Telegram/SourceFiles/core/launcher.cpp b/Telegram/SourceFiles/core/launcher.cpp index f0273bfdd..b1246588a 100644 --- a/Telegram/SourceFiles/core/launcher.cpp +++ b/Telegram/SourceFiles/core/launcher.cpp @@ -241,8 +241,10 @@ void Launcher::init() { QApplication::setApplicationName(qsl("TelegramDesktop")); -#ifdef TDESKTOP_FLATPAK_BUILD - QApplication::setDesktopFileName(qsl("org.telegram.desktop.desktop")); +#ifdef TDESKTOP_LAUNCHER_FILENAME +#define TDESKTOP_LAUNCHER_FILENAME_TO_STRING_HELPER(V) #V +#define TDESKTOP_LAUNCHER_FILENAME_TO_STRING(V) TDESKTOP_LAUNCHER_FILENAME_TO_STRING_HELPER(V) + QApplication::setDesktopFileName(qsl(TDESKTOP_LAUNCHER_FILENAME_TO_STRING(TDESKTOP_LAUNCHER_FILENAME))); #elif defined(Q_OS_LINUX) && QT_VERSION >= QT_VERSION_CHECK(5, 7, 0) QApplication::setDesktopFileName(qsl("telegramdesktop.desktop")); #endif