summaryrefslogtreecommitdiff
path: root/ui/qt
diff options
context:
space:
mode:
Diffstat (limited to 'ui/qt')
-rw-r--r--ui/qt/interface_tree_cache_model.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/qt/interface_tree_cache_model.cpp b/ui/qt/interface_tree_cache_model.cpp
index 07c9423652..9d1706f7f2 100644
--- a/ui/qt/interface_tree_cache_model.cpp
+++ b/ui/qt/interface_tree_cache_model.cpp
@@ -29,6 +29,7 @@
#include "qt_ui_utils.h"
#include "ui/capture_globals.h"
+#include "wsutil/utf8_entities.h"
#include "wiretap/wtap.h"
@@ -485,7 +486,7 @@ QVariant InterfaceTreeCacheModel::data(const QModelIndex &index, int role) const
if ( role == Qt::CheckStateRole )
return QVariant();
else if ( role == Qt::DisplayRole )
- return QString("-");
+ return QString(UTF8_EM_DASH);
}
if ( row < sourceModel->rowCount() )