From 9c9fc9e881ec14e407015a33a5504d28ec3bace4 Mon Sep 17 00:00:00 2001 From: John Preston Date: Wed, 28 Apr 2021 14:08:02 +0400 Subject: [PATCH] Version 2.7.4: Fix build for macOS. --- Telegram/SourceFiles/window/notifications_manager.h | 6 +++--- Telegram/SourceFiles/window/notifications_manager_default.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Telegram/SourceFiles/window/notifications_manager.h b/Telegram/SourceFiles/window/notifications_manager.h index 8c0d338cf..3bba4b872 100644 --- a/Telegram/SourceFiles/window/notifications_manager.h +++ b/Telegram/SourceFiles/window/notifications_manager.h @@ -311,13 +311,13 @@ protected: } void doClearFromSession(not_null session) override { } - bool doSkipAudio() const { + bool doSkipAudio() const override { return false; } - bool doSkipToast() const { + bool doSkipToast() const override { return false; } - bool doSkipFlashBounce() const { + bool doSkipFlashBounce() const override { return false; } diff --git a/Telegram/SourceFiles/window/notifications_manager_default.h b/Telegram/SourceFiles/window/notifications_manager_default.h index 19a6a98c0..b418a943c 100644 --- a/Telegram/SourceFiles/window/notifications_manager_default.h +++ b/Telegram/SourceFiles/window/notifications_manager_default.h @@ -76,9 +76,9 @@ private: void doClearFromHistory(not_null history) override; void doClearFromSession(not_null session) override; void doClearFromItem(not_null item) override; - bool doSkipAudio() const; - bool doSkipToast() const; - bool doSkipFlashBounce() const; + bool doSkipAudio() const override; + bool doSkipToast() const override; + bool doSkipFlashBounce() const override; void showNextFromQueue(); void unlinkFromShown(Notification *remove);