| 102 | } |
| 103 | |
| 104 | QString PrefixFormatter::getFormatedMeasureUnit(double value) |
| 105 | { |
| 106 | int index = findPrefixIndex(value); |
| 107 | |
| 108 | return m_prefixes[index].first; |
| 109 | } |
| 110 | double PrefixFormatter::getFormatedValue(double value) |
| 111 | { |
| 112 | int index = findPrefixIndex(value); |
no outgoing calls
no test coverage detected