2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-27 21:07:09 +00:00
John Preston 348b4d54ba Revert "Workaround build issues on GCC."
This reverts commit 3defb067833999c240f0ecc39864952515f22fba.
2021-03-18 00:30:12 +04:00

23 lines
492 B
C++

/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#pragma once
#include "ui/text/text_entity.h"
namespace Ui {
struct MultilineToastArgs {
QWidget *parentOverride = nullptr;
TextWithEntities text;
crl::time duration = 0;
};
void ShowMultilineToast(MultilineToastArgs &&args);
} // namespace Ui