summaryrefslogtreecommitdiff
path: root/src/gui/models
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-08-09 00:25:50 +0300
committerAndrei Karas <akaras@inbox.ru>2015-08-09 00:25:50 +0300
commite0d14cf8d3c809a0a5291823d3a962a4835a8f6e (patch)
tree0b0720d0988e2468abc75cf68b654673f7f60a92 /src/gui/models
parent12d4d6b33e036f17a0c59fa5a0c7af2c5d0461bc (diff)
downloadmv-e0d14cf8d3c809a0a5291823d3a962a4835a8f6e.tar.gz
mv-e0d14cf8d3c809a0a5291823d3a962a4835a8f6e.tar.bz2
mv-e0d14cf8d3c809a0a5291823d3a962a4835a8f6e.tar.xz
mv-e0d14cf8d3c809a0a5291823d3a962a4835a8f6e.zip
Add some missing checks to gui found by paranucker.
Diffstat (limited to 'src/gui/models')
-rw-r--r--src/gui/models/colormodel.cpp2
-rw-r--r--src/gui/models/langlistmodel.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/models/colormodel.cpp b/src/gui/models/colormodel.cpp
index a31b245c4..b1c07d52c 100644
--- a/src/gui/models/colormodel.cpp
+++ b/src/gui/models/colormodel.cpp
@@ -69,7 +69,7 @@ void ColorModel::add(const std::string &name, const Color *const color1,
ColorModel *ColorModel::createDefault(const Widget2 *const widget)
{
- ColorModel *const model = new ColorModel();
+ ColorModel *const model = new ColorModel;
if (!widget)
return model;
// TRANSLATORS: color name
diff --git a/src/gui/models/langlistmodel.h b/src/gui/models/langlistmodel.h
index 476ff41c9..62bc15e3e 100644
--- a/src/gui/models/langlistmodel.h
+++ b/src/gui/models/langlistmodel.h
@@ -122,7 +122,7 @@ class LangListModel final : public ExtendedListModel
return mIcons[i];
}
- Image *mIcons[langs_count];
+ Image *mIcons[langs_count] A_NONNULLPOINTER;
};
#endif // GUI_MODELS_LANGLISTMODEL_H