diff options
author | link2xt <link2xt@testrun.org> | 2020-11-05 23:28:54 +0300 |
---|---|---|
committer | link2xt <link2xt@testrun.org> | 2020-11-05 23:29:01 +0300 |
commit | a441a4ae1223e745c41ad7b9a111ad4401125d16 (patch) | |
tree | c78a9658cc1141cac62d098715bd15632b88e8a3 /context.cpp | |
parent | fe89c7a4ff760564f3cdbcd8e27c04eadd9f79d8 (diff) | |
download | kdeltachat-a441a4ae1223e745c41ad7b9a111ad4401125d16.tar.gz kdeltachat-a441a4ae1223e745c41ad7b9a111ad4401125d16.zip |
Implement Context.getConfig()
Diffstat (limited to 'context.cpp')
-rw-r--r-- | context.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/context.cpp b/context.cpp index ad5c2c9..1e44f7e 100644 --- a/context.cpp +++ b/context.cpp @@ -86,6 +86,16 @@ Context::getBlobdir() } QString +Context::getConfig(QString key) +{ + QByteArray utf8Key = key.toUtf8(); + char *value = dc_get_config(m_context, utf8Key.constData()); + QString result{value}; + dc_str_unref(value); + return result; +} + +QString Context::getMessageInfo(uint32_t msgId) { char *info = dc_get_msg_info(m_context, msgId); |