summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander V. Wolf <alex.v.wolf@gmail.com>2022-01-24 23:27:37 +0700
committerAlexander V. Wolf <alex.v.wolf@gmail.com>2022-01-24 23:27:37 +0700
commit6aaa377fa466de4c8ee72542c8b23c008bf31009 (patch)
tree64c6b9287fa7e925b9b05e367bcbd10a3aa43904
parent79b4ff866a065a1e19e8cf438ca4bae9c288e5de (diff)
Typofix in satellites plugin
-rw-r--r--plugins/Satellites/src/Satellite.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/plugins/Satellites/src/Satellite.cpp b/plugins/Satellites/src/Satellite.cpp
index 2f490ca726..1dc51b034c 100644
--- a/plugins/Satellites/src/Satellite.cpp
+++ b/plugins/Satellites/src/Satellite.cpp
@@ -362,12 +362,10 @@ QString Satellite::getInfoString(const StelCore *core, const InfoStringGroup& fl
.arg(q_("Inclination"), StelUtils::decDegToDmsStr(inclination),
QString::number(inclination, 'f', 4), degree)
<< "<br/>";
- oss << QString("%1: %2&deg;/%4&deg;")
+ oss << QString("%1: %2&deg;/%3&deg;")
.arg(q_("SubPoint (Lat./Long.)"))
- .arg(latLongSubPointPosition[0], 5, 'f', 2)
- .arg(QChar(0x00B0))
- .arg(latLongSubPointPosition[1], 5, 'f', 3)
- .arg(QChar(0x00B0));
+ .arg(latLongSubPointPosition[0], 5, 'f', 2)
+ .arg(latLongSubPointPosition[1], 5, 'f', 3);
oss << "<br/>";
//TODO: This one can be done better