2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-30 06:07:45 +00:00

Updated TDesktop sources to 2.7.4+9c9fc9e

This commit is contained in:
RadRussianRus 2021-04-28 16:07:50 +03:00
commit e88a71669e
2 changed files with 6 additions and 6 deletions

View File

@ -311,13 +311,13 @@ protected:
}
void doClearFromSession(not_null<Main::Session*> 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;
}

View File

@ -76,9 +76,9 @@ private:
void doClearFromHistory(not_null<History*> history) override;
void doClearFromSession(not_null<Main::Session*> session) override;
void doClearFromItem(not_null<HistoryItem*> 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);