From 3ba5b825e5ae39a5e89253002bcb8c5286059e48 Mon Sep 17 00:00:00 2001 From: "Sergey A. Osokin" Date: Mon, 25 Apr 2022 21:06:37 -0400 Subject: [PATCH] Fix -Wunused-const-variable warnings by removing unused variables Fixes #24432 --- Telegram/SourceFiles/platform/linux/specific_linux.cpp | 1 - Telegram/SourceFiles/ui/boxes/calendar_box.cpp | 1 - Telegram/SourceFiles/ui/chat/chat_theme.cpp | 1 - 3 files changed, 3 deletions(-) diff --git a/Telegram/SourceFiles/platform/linux/specific_linux.cpp b/Telegram/SourceFiles/platform/linux/specific_linux.cpp index dd0e5966e2..d64ebd320a 100644 --- a/Telegram/SourceFiles/platform/linux/specific_linux.cpp +++ b/Telegram/SourceFiles/platform/linux/specific_linux.cpp @@ -64,7 +64,6 @@ constexpr auto kDesktopFile = ":/misc/telegramdesktop.desktop"_cs; constexpr auto kIconName = "telegram"_cs; constexpr auto kIBusPortalService = "org.freedesktop.portal.IBus"_cs; -constexpr auto kWebviewService = "org.telegram.desktop.GtkIntegration.WebviewHelper-%1-%2"_cs; #ifndef DESKTOP_APP_DISABLE_DBUS_INTEGRATION void PortalAutostart(bool start, bool silent) { diff --git a/Telegram/SourceFiles/ui/boxes/calendar_box.cpp b/Telegram/SourceFiles/ui/boxes/calendar_box.cpp index 90fdd92568..715e92e083 100644 --- a/Telegram/SourceFiles/ui/boxes/calendar_box.cpp +++ b/Telegram/SourceFiles/ui/boxes/calendar_box.cpp @@ -20,7 +20,6 @@ namespace Ui { namespace { constexpr auto kDaysInWeek = 7; -constexpr auto kMaxDaysForScroll = kDaysInWeek * 1000; constexpr auto kTooltipDelay = crl::time(1000); constexpr auto kJumpDelay = 2 * crl::time(1000); diff --git a/Telegram/SourceFiles/ui/chat/chat_theme.cpp b/Telegram/SourceFiles/ui/chat/chat_theme.cpp index 397df24633..b07c0c23d8 100644 --- a/Telegram/SourceFiles/ui/chat/chat_theme.cpp +++ b/Telegram/SourceFiles/ui/chat/chat_theme.cpp @@ -20,7 +20,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL namespace Ui { namespace { -constexpr auto kMaxChatEntryHistorySize = 50; constexpr auto kCacheBackgroundTimeout = 1 * crl::time(1000); constexpr auto kCacheBackgroundFastTimeout = crl::time(200); constexpr auto kBackgroundFadeDuration = crl::time(200);