diff options
author | Mark Brand <mabrand@mabrand.nl> | 2012-04-22 23:17:33 +0200 |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-04-24 10:09:37 +0200 |
commit | ea171150de245b5eea0e04f766f37a39c8800e67 (patch) | |
tree | c7a207ed6c14c4d6990e4727dd299acbd287f9d4 | |
parent | 1af008733c4b0ab94f8d4c272359b8f34b177a0b (diff) | |
download | qt4-tools-ea171150de245b5eea0e04f766f37a39c8800e67.tar.gz |
QSqlQueryModel::fetchMore() documentation fix
Change-Id: If046e674abad9c2dcff934a2fdd80d4133e1f4ad
Reviewed-by: Andy Shaw <andy.shaw@digia.com>
cherry-picked from qt5/qtbase: 508a90302b5bd2a1b228c62d1a1b24a3e66d24a9
Reviewed-by: Mark Brand <mabrand@mabrand.nl>
-rw-r--r-- | src/sql/models/qsqlquerymodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sql/models/qsqlquerymodel.cpp b/src/sql/models/qsqlquerymodel.cpp index a740071d33..b78ca63306 100644 --- a/src/sql/models/qsqlquerymodel.cpp +++ b/src/sql/models/qsqlquerymodel.cpp @@ -175,7 +175,7 @@ QSqlQueryModel::~QSqlQueryModel() This only affects databases that don't report back the size of a query (see QSqlDriver::hasFeature()). - To force fetching of the entire database, you can use the following: + To force fetching of the entire result set, you can use the following: \snippet doc/src/snippets/code/src_sql_models_qsqlquerymodel.cpp 0 |