aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/preference_editor_frame.cpp
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2016-02-25 10:15:32 +0100
committerStig Bjørlykke <stig@bjorlykke.org>2016-02-25 13:01:46 +0000
commit0ffa73ae249999fad7125879207bcfc0c601898d (patch)
tree3173edef25c295f77dc21df4b75ce8b0ef560534 /ui/qt/preference_editor_frame.cpp
parentc154c75fefb812f95fbf96de63eab17a61cfcbb7 (diff)
Qt: Use UTF8_HORIZONTAL_ELLIPSIS for …
Bug: 12172 Change-Id: Icbb3011ff18fc53c3e77c62692ed977178d1aace Reviewed-on: https://code.wireshark.org/review/14138 Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
Diffstat (limited to 'ui/qt/preference_editor_frame.cpp')
-rw-r--r--ui/qt/preference_editor_frame.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/qt/preference_editor_frame.cpp b/ui/qt/preference_editor_frame.cpp
index aec5207f60..0e196c0a8a 100644
--- a/ui/qt/preference_editor_frame.cpp
+++ b/ui/qt/preference_editor_frame.cpp
@@ -32,6 +32,7 @@
#include <ui_preference_editor_frame.h>
#include "qt_ui_utils.h"
+#include <wsutil/utf8_entities.h>
#include "wireshark_application.h"
@@ -78,7 +79,7 @@ void PreferenceEditorFrame::editPreference(preference *pref, pref_module *module
return;
}
- ui->modulePreferencesToolButton->setText(tr("Open %1 preferences…").arg(module_->title));
+ ui->modulePreferencesToolButton->setText(tr("Open %1 preferences" UTF8_HORIZONTAL_ELLIPSIS).arg(module_->title));
pref_stash(pref_, NULL);
ui->preferenceTitleLabel->setText(QString("%1:").arg(pref->title));