summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/sql/kernel/qsqldriverplugin.cpp2
-rw-r--r--src/sql/kernel/qsqlerror.cpp6
-rw-r--r--src/sql/kernel/qsqlresult.cpp2
-rw-r--r--src/sql/models/qsqlrelationaltablemodel.cpp4
4 files changed, 3 insertions, 11 deletions
diff --git a/src/sql/kernel/qsqldriverplugin.cpp b/src/sql/kernel/qsqldriverplugin.cpp
index 71797eb69b..9229468b2a 100644
--- a/src/sql/kernel/qsqldriverplugin.cpp
+++ b/src/sql/kernel/qsqldriverplugin.cpp
@@ -78,7 +78,7 @@ QT_BEGIN_NAMESPACE
key. The driver key is usually the class name of the required
driver. Keys are case sensitive.
- \sa keys()
+ \sa {How to Create Qt Plugins}
*/
/*!
diff --git a/src/sql/kernel/qsqlerror.cpp b/src/sql/kernel/qsqlerror.cpp
index c1314a15a5..edf034a48d 100644
--- a/src/sql/kernel/qsqlerror.cpp
+++ b/src/sql/kernel/qsqlerror.cpp
@@ -80,12 +80,6 @@ QDebug operator<<(QDebug dbg, const QSqlError &s)
\value StatementError SQL statement syntax error.
\value TransactionError Transaction failed error.
\value UnknownError Unknown error.
-
- \omitvalue None
- \omitvalue Connection
- \omitvalue Statement
- \omitvalue Transaction
- \omitvalue Unknown
*/
/*!
diff --git a/src/sql/kernel/qsqlresult.cpp b/src/sql/kernel/qsqlresult.cpp
index 2abcf85786..50a76e48bc 100644
--- a/src/sql/kernel/qsqlresult.cpp
+++ b/src/sql/kernel/qsqlresult.cpp
@@ -237,8 +237,6 @@ QString QSqlResultPrivate::namedToPositionalBinding()
\value PositionalBinding Use the ODBC-style positional syntax, with "?" as placeholders.
\value NamedBinding Use the Oracle-style syntax with named placeholders (e.g., ":id")
- \omitvalue BindByPosition
- \omitvalue BindByName
\sa bindingSyntax()
*/
diff --git a/src/sql/models/qsqlrelationaltablemodel.cpp b/src/sql/models/qsqlrelationaltablemodel.cpp
index bb29a44ec5..a23bfc9d6d 100644
--- a/src/sql/models/qsqlrelationaltablemodel.cpp
+++ b/src/sql/models/qsqlrelationaltablemodel.cpp
@@ -675,8 +675,8 @@ void QSqlRelationalTableModel::clear()
*/
/*!
- Sets the SQL join mode to show or hide rows with NULL foreign keys.
- In InnerJoin mode (the default) these rows will not be showed: use the
+ Sets the SQL \a joinMode to show or hide rows with NULL foreign keys.
+ In InnerJoin mode (the default) these rows will not be shown: use the
LeftJoin mode if you want to show them.
\sa QSqlRelationalTableModel::JoinMode