diff options
author | link2xt <link2xt@testrun.org> | 2021-02-22 20:46:00 +0300 |
---|---|---|
committer | link2xt <link2xt@testrun.org> | 2021-02-22 20:46:00 +0300 |
commit | 5cc6dd5005e8f630cc80b7b3c51cf302bb08e9a0 (patch) | |
tree | a269370df52fae408a5b4686de3c7a9378f0f4e2 /context.cpp | |
parent | 4b8c3133655969dc7dbd335edb79ca1358ab250c (diff) | |
download | kdeltachat-5cc6dd5005e8f630cc80b7b3c51cf302bb08e9a0.tar.gz kdeltachat-5cc6dd5005e8f630cc80b7b3c51cf302bb08e9a0.zip |
Add Context::marknoticedChat()
Diffstat (limited to 'context.cpp')
-rw-r--r-- | context.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/context.cpp b/context.cpp index 82b9a6e..9c1ac94 100644 --- a/context.cpp +++ b/context.cpp @@ -85,6 +85,11 @@ Context::getFreshMsgCnt(uint32_t chatId) { return dc_get_fresh_msg_cnt(m_context, chatId); } +void +Context::marknoticedChat(uint32_t chatId) { + return dc_marknoticed_chat(m_context, chatId); +} + DcMessage * Context::getMessage(uint32_t msgId) { |