summaryrefslogtreecommitdiff
path: root/src/gui/models/namesmodel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/models/namesmodel.cpp')
-rw-r--r--src/gui/models/namesmodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/models/namesmodel.cpp b/src/gui/models/namesmodel.cpp
index 9c90ff4c0..5a351f471 100644
--- a/src/gui/models/namesmodel.cpp
+++ b/src/gui/models/namesmodel.cpp
@@ -49,7 +49,7 @@ std::string NamesModel::getElementAt(int i)
void NamesModel::fillFromArray(const char *const *const arr,
const std::size_t sz)
{
- if (!arr)
+ if (arr == nullptr)
return;
for (size_t f = 0; f < sz; f ++)
mNames.push_back(gettext(arr[f]));