summaryrefslogtreecommitdiff
path: root/src/gui/widgets/namesmodel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets/namesmodel.cpp')
-rw-r--r--src/gui/widgets/namesmodel.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gui/widgets/namesmodel.cpp b/src/gui/widgets/namesmodel.cpp
index bac8ee0b7..0dc06b05c 100644
--- a/src/gui/widgets/namesmodel.cpp
+++ b/src/gui/widgets/namesmodel.cpp
@@ -46,8 +46,7 @@ int NamesModel::getNumberOfElements()
std::string NamesModel::getElementAt(int i)
{
if (i >= getNumberOfElements() || i < 0)
- return _("???");
-
+ return "???";
return mNames[i];
}