Home
last modified time | relevance | path

Searched refs:_draftSources (Results 1 – 2 of 2) sorted by relevance

/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/SourceFiles/storage/
H A Dstorage_account.cpp1014 _draftSources[history][key] = std::move(source); in registerDraftSource()
1020 const auto i = _draftSources.find(history); in unregisterDraftSource()
1021 if (i != _draftSources.end()) { in unregisterDraftSource()
1024 _draftSources.erase(i); in unregisterDraftSource()
1037 const auto sourcesIt = _draftSources.find(history); in writeDrafts()
1038 const auto &sources = (sourcesIt != _draftSources.end()) in writeDrafts()
1125 const auto sourcesIt = _draftSources.find(history); in writeDraftCursors()
1126 const auto &sources = (sourcesIt != _draftSources.end()) in writeDraftCursors()
H A Dstorage_account.h253 base::flat_map<Data::DraftKey, MessageDraftSource>> _draftSources; variable