| 42 | // ─── Network diagnostics tooltip ───────────────────────────────────────────── |
| 43 | |
| 44 | QString formatNetworkMs(int ms) |
| 45 | { |
| 46 | return ms < 1 ? "< 1 ms" : QString("%1 ms").arg(ms); |
| 47 | } |
| 48 | |
| 49 | QString formatNetworkSeqErrors(int errors, int packets) |
| 50 | { |
no outgoing calls
no test coverage detected