| 46 | } |
| 47 | |
| 48 | QString Misc::SimplifyTimeMS(int ms) |
| 49 | { |
| 50 | if (ms < 0) |
| 51 | ms = 0; |
| 52 | |
| 53 | if (ms > 0 && (ms % 1000) == 0) |
| 54 | return QString::number(ms / 1000) + " s"; |
| 55 | |
| 56 | return QString::number(ms) + " ms"; |
| 57 | } |
| 58 | |
| 59 | QString Misc::FormatBytesPerSecond(double bytesPerSec) |
| 60 | { |
nothing calls this directly
no outgoing calls
no test coverage detected