summaryrefslogtreecommitdiff
path: root/src/gui/models/colormodel.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-07-11 00:12:09 +0300
committerAndrei Karas <akaras@inbox.ru>2015-07-11 00:12:09 +0300
commit4fbb944f132eb886a6f5b350e5a14a4fe380aacf (patch)
tree6df2ed96430610ee7c35a7ca4902bbdade0e8e34 /src/gui/models/colormodel.cpp
parent1dc012a3bb44218778568e8f80c4e9b445802195 (diff)
downloadplus-4fbb944f132eb886a6f5b350e5a14a4fe380aacf.tar.gz
plus-4fbb944f132eb886a6f5b350e5a14a4fe380aacf.tar.bz2
plus-4fbb944f132eb886a6f5b350e5a14a4fe380aacf.tar.xz
plus-4fbb944f132eb886a6f5b350e5a14a4fe380aacf.zip
Add missing checks into gui.
Diffstat (limited to 'src/gui/models/colormodel.cpp')
-rw-r--r--src/gui/models/colormodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/models/colormodel.cpp b/src/gui/models/colormodel.cpp
index f7b18d300..a31b245c4 100644
--- a/src/gui/models/colormodel.cpp
+++ b/src/gui/models/colormodel.cpp
@@ -51,7 +51,7 @@ std::string ColorModel::getElementAt(int i)
const ColorPair *ColorModel::getColorAt(const int i) const
{
if (i >= static_cast<int>(mColors.size()) || i < 0)
- return nullptr;
+ return &mColors[0];
return &mColors[i];
}