| 848 | } |
| 849 | |
| 850 | QString formatPingTime(double dPingTime) |
| 851 | { |
| 852 | return (dPingTime == std::numeric_limits<int64_t>::max()/1e6 || dPingTime == 0) ? QObject::tr("N/A") : QString(QObject::tr("%1 ms")).arg(QString::number((int)(dPingTime * 1000), 10)); |
| 853 | } |
| 854 | |
| 855 | QString formatTimeOffset(int64_t nTimeOffset) |
| 856 | { |
no test coverage detected