summaryrefslogtreecommitdiffstats
path: root/src/sql/doc/src/sql-programming.qdoc
diff options
context:
space:
mode:
authorJerome Pasion <jerome.pasion@digia.com>2013-10-02 16:51:05 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-08 00:46:27 +0200
commit4533cc994484a2308297e64e99af005fb4dca065 (patch)
treebc66283d11cdad100a1aec03f4e1d86bedc9a79e /src/sql/doc/src/sql-programming.qdoc
parent50dd0232b61d8ea3fb9aab18972c6e19678656e6 (diff)
Doc: Adding mark-up to boolean default values.
Default values should have mark-up to denote that they are code. This commit changes: -"property is true" to "property is \c true". -"Returns true" to "Returns \c true". -"property is false" to "property is \c false". -"returns true" to "returns \c true". -"returns false" to "returns \c false". src/3rdparty and non-documentation instances were ignored. Task-number: QTBUG-33360 Change-Id: Ie87eaa57af947caa1230602b61c5c46292a4cf4e Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com> Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'src/sql/doc/src/sql-programming.qdoc')
-rw-r--r--src/sql/doc/src/sql-programming.qdoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sql/doc/src/sql-programming.qdoc b/src/sql/doc/src/sql-programming.qdoc
index 9a4f0eec75..33574bf8c2 100644
--- a/src/sql/doc/src/sql-programming.qdoc
+++ b/src/sql/doc/src/sql-programming.qdoc
@@ -152,7 +152,7 @@
After these connections have been initialized, \l{QSqlDatabase::}
{open()} for each one to establish the live connections. If the
- \l{QSqlDatabase::} {open()} fails, it returns false. In that case,
+ \l{QSqlDatabase::} {open()} fails, it returns \c false. In that case,
call QSqlDatabase::lastError() to get error information.
Once a connection is established, we can call the static function
@@ -199,7 +199,7 @@
above, we don't specify any connection, so the default connection
is used.
- If an error occurs, \l{QSqlQuery::exec()}{exec()} returns false.
+ If an error occurs, \l{QSqlQuery::exec()}{exec()} returns \c false.
The error is then available as QSqlQuery::lastError().
\section2 Navigating the Result Set
@@ -209,7 +209,7 @@
internal pointer is located one position \e{before} the first
record. We must call QSqlQuery::next() once to advance to the
first record, then \l{QSqlQuery::next()}{next()} again repeatedly
- to access the other records, until it returns false. Here's a
+ to access the other records, until it returns \c false. Here's a
typical loop that iterates over all the records in order:
\snippet sqldatabase/sqldatabase.cpp 32