summaryrefslogtreecommitdiffhomepage
path: root/filter-kalman
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2018-02-28 20:31:59 +0100
committerStanislaw Halik <sthalik@misaki.pl>2018-02-28 20:31:59 +0100
commit4d2106c3c6f51c574fbfad69d6086cbe74af1179 (patch)
treeb7f3be50aa528cdec73399684e800a886cecfe38 /filter-kalman
parent02e657f9d86bfe8b322a2e18573a4d8959babfd9 (diff)
logic, filter/kalman: fix typos
Tool: codespell
Diffstat (limited to 'filter-kalman')
-rw-r--r--filter-kalman/kalman.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/filter-kalman/kalman.cpp b/filter-kalman/kalman.cpp
index 82b1b0f1..3a0da608 100644
--- a/filter-kalman/kalman.cpp
+++ b/filter-kalman/kalman.cpp
@@ -270,9 +270,9 @@ dialog_kalman::dialog_kalman()
void dialog_kalman::updateLabels(const slider_value&)
{
- // M$ hates unicode! (M$ autoconverts source code of one kind of utf-8 format,
+ // M$ hates unicode! (M$ autoconverts source code of one kind of utf-8 format,
// the one without BOM, to another kind that QT does not like)
- // Previous attempt to use c++11 utf8 strings like u8" °" now failed for unkown
+ // Previous attempt to use c++11 utf8 strings like u8" °" now failed for unknown
// reasons where it worked before. Hence fallback to QChar(0x00b0).
this->ui.noiseRotLabel->setText(
QString::number(settings::map_slider_value(s.noise_rot_slider_value), 'f', 3) + " " + QChar(0x00b0));