diff options
Diffstat (limited to 'qt-models/divetripmodel.cpp')
-rw-r--r-- | qt-models/divetripmodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-models/divetripmodel.cpp b/qt-models/divetripmodel.cpp index 5cbb6a118..33f0dd46c 100644 --- a/qt-models/divetripmodel.cpp +++ b/qt-models/divetripmodel.cpp @@ -717,7 +717,7 @@ void addInBatches(Vector1 &v1, const Vector2 &v2, Comparator comp, Inserter inse // We were at end -> insert the remaining items j = v2.size(); } else { - for (j = i + 1; j < (int)v2.size() && comp(v2[i], v1[idx]); ++j) + for (j = i + 1; j < (int)v2.size() && comp(v2[j], v1[idx]); ++j) ; // Pass } |