Skip to content

Commit

Permalink
Sat Tracker: fixed compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
f4exb committed May 11, 2021
1 parent 2e61dc1 commit 7b5e033
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down

0 comments on commit 7b5e033

Please sign in to comment.