diff options
Diffstat (limited to 'context.cpp')
-rw-r--r-- | context.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/context.cpp b/context.cpp index cc415f0..0951241 100644 --- a/context.cpp +++ b/context.cpp @@ -103,6 +103,14 @@ Context::getBlobdir() return result; } +bool +Context::setConfig(QString key, QString value) +{ + QByteArray utf8Key = key.toUtf8(); + QByteArray utf8Value = value.toUtf8(); + return dc_set_config(m_context, utf8Key.constData(), utf8Value.constData()); +} + QString Context::getConfig(QString key) { |