| 205 | } |
| 206 | |
| 207 | void BaseInstance::addLinkedInstanceId(const QString& id) |
| 208 | { |
| 209 | auto linkedInstances = m_settings->get("linkedInstances").toStringList(); |
| 210 | linkedInstances.append(id); |
| 211 | setLinkedInstances(linkedInstances); |
| 212 | } |
| 213 | |
| 214 | bool BaseInstance::removeLinkedInstanceId(const QString& id) |
| 215 | { |
no test coverage detected