diff options
Diffstat (limited to 'src/gui/models/namesmodel.cpp')
-rw-r--r-- | src/gui/models/namesmodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/models/namesmodel.cpp b/src/gui/models/namesmodel.cpp index 468c9989b..a66cea6b2 100644 --- a/src/gui/models/namesmodel.cpp +++ b/src/gui/models/namesmodel.cpp @@ -42,7 +42,7 @@ std::string NamesModel::getElementAt(int i) { if (i >= getNumberOfElements() || i < 0) return "???"; - return mNames[i]; + return mNames[static_cast<size_t>(i)]; } void NamesModel::fillFromArray(const char *const *const arr, std::size_t sz) |