| 85 | } |
| 86 | |
| 87 | QByteArray KdeConnectPluginConfig::getByteArray(const QString &key, const QByteArray defaultValue) |
| 88 | { |
| 89 | if (!d->m_config) { |
| 90 | loadConfig(); |
| 91 | } |
| 92 | |
| 93 | d->m_config->sync(); |
| 94 | return d->m_config->value(key, defaultValue).toByteArray(); |
| 95 | } |
| 96 | |
| 97 | QVariantList KdeConnectPluginConfig::getList(const QString &key, const QVariantList &defaultValue) |
| 98 | { |
no outgoing calls
no test coverage detected