summaryrefslogtreecommitdiff
path: root/Libraries/LibGUI/GSpinBox.cpp
diff options
context:
space:
mode:
authorSergey Bugaev <bugaevc@gmail.com>2019-09-04 23:50:40 +0300
committerAndreas Kling <awesomekling@gmail.com>2019-09-05 16:37:39 +0200
commit22e6978c713cd9cb292fcb97b184d29980a33237 (patch)
tree154ca18a9ebaaa120170e88ad0bb2f1d8ad6e067 /Libraries/LibGUI/GSpinBox.cpp
parent84bc6a92a745fbaa6f54dbd54f0c0668f3f1a385 (diff)
downloadserenity-22e6978c713cd9cb292fcb97b184d29980a33237.zip
WindowServer+LibGUI+FontEditor: Encode special characters as UTF-8
Diffstat (limited to 'Libraries/LibGUI/GSpinBox.cpp')
-rw-r--r--Libraries/LibGUI/GSpinBox.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Libraries/LibGUI/GSpinBox.cpp b/Libraries/LibGUI/GSpinBox.cpp
index 3fae9bf10c..35569d4e59 100644
--- a/Libraries/LibGUI/GSpinBox.cpp
+++ b/Libraries/LibGUI/GSpinBox.cpp
@@ -17,12 +17,12 @@ GSpinBox::GSpinBox(GWidget* parent)
};
m_increment_button = new GButton(this);
m_increment_button->set_focusable(false);
- m_increment_button->set_text("\xf6");
+ m_increment_button->set_text("\xc3\xb6");
m_increment_button->on_click = [this](GButton&) { set_value(m_value + 1); };
m_increment_button->set_auto_repeat_interval(150);
m_decrement_button = new GButton(this);
m_decrement_button->set_focusable(false);
- m_decrement_button->set_text("\xf7");
+ m_decrement_button->set_text("\xc3\xb7");
m_decrement_button->on_click = [this](GButton&) { set_value(m_value - 1); };
m_decrement_button->set_auto_repeat_interval(150);
}