mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-14 08:45:36 +08:00
Fix missing arguments and const declarations in avionics
and geo classes. In the same step, add the override keyword fixes #133 refs 124#
This commit is contained in:
@@ -114,8 +114,9 @@ namespace BlackMisc
|
||||
* \brief String for converter
|
||||
* \return
|
||||
*/
|
||||
virtual QString convertToQString() const
|
||||
virtual QString convertToQString(bool i18n = false) const override
|
||||
{
|
||||
Q_UNUSED(i18n)
|
||||
QString s = "ECEF: {x %1, y %2, z %3}";
|
||||
s = s.arg(QString::number(this->x(), 'f', 6)).
|
||||
arg(QString::number(this->y(), 'f', 6)).
|
||||
|
||||
Reference in New Issue
Block a user