diff options
author | David Boddie <dboddie@trolltech.com> | 2010-05-31 15:02:49 (GMT) |
---|---|---|
committer | David Boddie <dboddie@trolltech.com> | 2010-05-31 15:02:49 (GMT) |
commit | bd786961b0d65bdd1adb31eca0a050a4b9a1f39a (patch) | |
tree | 0096894fc7ed4cc12050a7a507206ed70797db16 /examples/itemviews/fetchmore | |
parent | c1760352caf33390592ccf5f8eb3401e10aea143 (diff) | |
download | Qt-bd786961b0d65bdd1adb31eca0a050a4b9a1f39a.zip Qt-bd786961b0d65bdd1adb31eca0a050a4b9a1f39a.tar.gz Qt-bd786961b0d65bdd1adb31eca0a050a4b9a1f39a.tar.bz2 |
Doc: Fixed an off-by-one error in an example.
Reviewed-by: Trust Me
Task-number: QTBUG-10854
Diffstat (limited to 'examples/itemviews/fetchmore')
-rw-r--r-- | examples/itemviews/fetchmore/filelistmodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/itemviews/fetchmore/filelistmodel.cpp b/examples/itemviews/fetchmore/filelistmodel.cpp index 05ab45e..942150e 100644 --- a/examples/itemviews/fetchmore/filelistmodel.cpp +++ b/examples/itemviews/fetchmore/filelistmodel.cpp @@ -92,7 +92,7 @@ void FileListModel::fetchMore(const QModelIndex & /* index */) int remainder = fileList.size() - fileCount; int itemsToFetch = qMin(100, remainder); - beginInsertRows(QModelIndex(), fileCount, fileCount+itemsToFetch); + beginInsertRows(QModelIndex(), fileCount, fileCount+itemsToFetch-1); fileCount += itemsToFetch; |