| 79 | } |
| 80 | |
| 81 | bool AppConfig::exists(const Key &key) |
| 82 | { |
| 83 | bool exists; |
| 84 | auto skey = QVariant::fromValue(key).toString(); |
| 85 | auto variant = _appconf->getVariant(skey, true, &exists); |
| 86 | return exists; |
| 87 | } |
| 88 | |
| 89 | bool AppConfig::isAppBlocked(const QString &name) const |
| 90 | { |
no test coverage detected