| 2269 | } |
| 2270 | |
| 2271 | static QString formatSliceMix(const QStringList& sliceLabels) |
| 2272 | { |
| 2273 | if (sliceLabels.isEmpty()) { |
| 2274 | return "no unmuted slices"; |
| 2275 | } |
| 2276 | return QString("slice%1 %2") |
| 2277 | .arg(sliceLabels.size() == 1 ? "" : "s") |
| 2278 | .arg(sliceLabels.join(", ")); |
| 2279 | } |
| 2280 | |
| 2281 | static QString formatAudioStream(const NetworkDiagnosticsSample& sample, |
| 2282 | const QStringList& sliceLabels) |
no test coverage detected