| 101 | } |
| 102 | |
| 103 | bool handleVoidReply(QDBusPendingReply<>& reply) { |
| 104 | reply.waitForFinished(); |
| 105 | |
| 106 | if(reply.isError()) { |
| 107 | Log::error(reply.error().message());; |
| 108 | } |
| 109 | return reply.isError(); |
| 110 | } |
| 111 | |
| 112 | bool validateKey(const QString& keyString, DspConfig::Key& resolvedKey) { |
| 113 | QMetaEnum meta = QMetaEnum::fromType<DspConfig::Key>(); |
no test coverage detected