Sat Tracker: fixed compiler warning

pull/900/head v6.12.1
f4exb 2021-05-11 22:23:14 +02:00
rodzic 2e61dc1fbd
commit 7b5e033c04
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -235,7 +235,7 @@ void SatelliteSelectionDialog::displaySatInfo(const QString& name)
info.append(QString(" Inclination: %1%2").arg(Units::radiansToDegrees(ele.Inclination())).arg(QChar(0xb0)));
info.append(QString(" Eccentricity: %1").arg(ele.Eccentricity()));
}
catch (TleException tlee)
catch (TleException& tlee)
{
qDebug() << "SatelliteSelectionDialog::displaySatInfo: TleException " << tlee.what();
}