From 47ae5a9a07bfd3267957e031f26e4a13ef64eb29 Mon Sep 17 00:00:00 2001 From: Martin Rotter Date: Fri, 18 Mar 2016 06:23:58 +0100 Subject: [PATCH] Make separator UTF-8. --- src/gui/statusbar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/statusbar.cpp b/src/gui/statusbar.cpp index e0c0e6a70..cacaecf82 100755 --- a/src/gui/statusbar.cpp +++ b/src/gui/statusbar.cpp @@ -153,7 +153,7 @@ void StatusBar::loadChangeableActions(const QStringList &action_names) { } else { if (action_name == SEPARATOR_ACTION_NAME) { - QLabel *lbl = new QLabel(QSL("•")); + QLabel *lbl = new QLabel(QString::fromUtf8("•")); widget_to_add = lbl; action_to_add = new QAction(this);