summaryrefslogtreecommitdiffhomepage
path: root/gui
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2017-05-03 08:41:53 +0200
committerStanislaw Halik <sthalik@misaki.pl>2017-05-03 08:41:53 +0200
commit764a29e801951bf0091f9605e925f7bbbcc74ef2 (patch)
treeff0cdfaca1e202698b6be4b40411149c2af2a896 /gui
parent9d4236a7e08a70a683ee2f97f2bc2b3fe963c96e (diff)
revert msvc utf-8 source file encoding
cf. https://github.com/opentrack/opentrack/issues/605#issuecomment-298637288
Diffstat (limited to 'gui')
-rw-r--r--gui/mapping-window.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/mapping-window.cpp b/gui/mapping-window.cpp
index fdd9be03..0ee8c562 100644
--- a/gui/mapping-window.cpp
+++ b/gui/mapping-window.cpp
@@ -62,7 +62,7 @@ void MapWidget::load()
for (QComboBox* x : { ui.max_yaw_rotation, ui.max_pitch_rotation, ui.max_roll_rotation })
for (a y : { a::r180, a::r90, a::r60, a::r45, a::r30, a::r25, a::r20, a::r15, a::r10 })
- x->addItem(tr(u8"%1°").arg(y), y);
+ x->addItem(tr("%1°").arg(y), y);
for (QComboBox* x : { ui.max_x_translation, ui.max_y_translation, ui.max_z_translation })
for (a y : { a::t30, a::t20, a::t15, a::t10, a::t100 })