tdesktop/Telegram/SourceFiles/api/api_common.cpp

24 lines
530 B
C++
Raw Normal View History

2022-11-01 04:46:31 +00:00
/*
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
*/
#include "api/api_common.h"
#include "data/data_thread.h"
namespace Api {
SendAction::SendAction(
not_null<Data::Thread*> thread,
SendOptions options)
: history(thread->owningHistory())
, options(options)
2022-11-01 08:03:42 +00:00
, replyTo(thread->topicRootId())
, topicRootId(replyTo) {
2022-11-01 04:46:31 +00:00
}
} // namespace Api