| 86 | // Helper to set text entries to a specified value |
| 87 | template <typename T> |
| 88 | void set(const std::string& label, const T& value, std::ostringstream& sstr) |
| 89 | { |
| 90 | sstr.str(""); |
| 91 | sstr << value; |
| 92 | m_texts.at(label).value.setString(sstr.str()); |
| 93 | } |
| 94 | |
| 95 | // Update joystick identification |
| 96 | void updateIdentification() |
no test coverage detected