| 166 | } |
| 167 | } |
| 168 | void QvConfigHandler::ClearConnectionUsage(const ConnectionGroupPair &id) |
| 169 | { |
| 170 | CheckValidId(id.connectionId, nothing); |
| 171 | connections[id.connectionId].stats.Clear(); |
| 172 | emit OnStatsAvailable(id, {}); |
| 173 | PluginHost->SendEvent({ GetDisplayName(id.connectionId), 0, 0, 0, 0 }); |
| 174 | return; |
| 175 | } |
| 176 | |
| 177 | const QList<GroupId> QvConfigHandler::GetConnectionContainedIn(const ConnectionId &connId) const |
| 178 | { |
no test coverage detected