* @brief Formats a numerical value according to its context range. */
| 504 | * @brief Formats a numerical value according to its context range. |
| 505 | */ |
| 506 | QString UI::Dashboard::formatValue(double val, double min, double max) const |
| 507 | { |
| 508 | return FMT_VAL(val, min, max); |
| 509 | } |
| 510 | |
| 511 | /** |
| 512 | * @brief Retrieves the type of widget associated with a given widget index. |
no test coverage detected