| 253 | } |
| 254 | |
| 255 | bool CliRemoteController::savePreset(const QString &name) const |
| 256 | { |
| 257 | if(checkConnectionAndLog()) { |
| 258 | auto reply = service->savePreset(name); |
| 259 | return handleVoidReply(reply); |
| 260 | } |
| 261 | |
| 262 | PresetManager::instance().save(name); |
| 263 | return true; |
| 264 | } |
| 265 | |
| 266 | bool CliRemoteController::deletePreset(const QString &name) const |
| 267 | { |
nothing calls this directly
no test coverage detected