summaryrefslogtreecommitdiff
path: root/library/CustomGrid.cpp
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 16:48:05 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 16:48:05 +0200
commite7ceb20f1d6497f28054dc111260be8ba8d8b5aa (patch)
tree0d21c616743626435afd9e14922a27c45ceba772 /library/CustomGrid.cpp
parent1.4 (diff)
downloadFreeFileSync-e7ceb20f1d6497f28054dc111260be8ba8d8b5aa.tar.gz
FreeFileSync-e7ceb20f1d6497f28054dc111260be8ba8d8b5aa.tar.bz2
FreeFileSync-e7ceb20f1d6497f28054dc111260be8ba8d8b5aa.zip
1.5
Diffstat (limited to 'library/CustomGrid.cpp')
-rw-r--r--library/CustomGrid.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/CustomGrid.cpp b/library/CustomGrid.cpp
index eea2a0d4..4f8c84ad 100644
--- a/library/CustomGrid.cpp
+++ b/library/CustomGrid.cpp
@@ -164,7 +164,7 @@ public:
{
if (currentUI_ViewPtr)
{
- if (currentUI_ViewPtr->size() > unsigned(row))
+ if (unsigned(row) < currentUI_ViewPtr->size())
{
if ((*currentUI_ViewPtr)[row].cmpResult == constFilteredOut)
return true;
bgstack15