Fixed updates of view when simulated aircraft values are updated.

* renamed view to simulated aircraft view
* utility function for bool -> on/off
This commit is contained in:
Klaus Basan
2015-03-19 03:39:33 +01:00
parent 066515fb9b
commit a50e45e451
9 changed files with 69 additions and 38 deletions

View File

@@ -171,6 +171,12 @@ namespace BlackMisc
//! A map converted to string
template<class K, class V> QString qmapToString(const QMap<K, V> &map);
//! Bool to on/off
QString boolToOnOff(bool v, bool i18n = false);
//! Bool to yes / no
QString boolToYesNo(bool v, bool i18n = false);
//! Get local host name
const QString &localHostName();