| 819 | } |
| 820 | |
| 821 | QString formatPingTime(std::chrono::microseconds ping_time) |
| 822 | { |
| 823 | return (ping_time == std::chrono::microseconds::max() || ping_time == 0us) ? |
| 824 | QObject::tr("N/A") : |
| 825 | QObject::tr("%1 ms").arg(QString::number((int)(count_microseconds(ping_time) / 1000), 10)); |
| 826 | } |
| 827 | |
| 828 | QString formatTimeOffset(int64_t nTimeOffset) |
| 829 | { |
no test coverage detected