Docs: Fix some warnings
authorChristian Stenger <christian.stenger@digia.com>
Thu, 6 Dec 2012 14:36:17 +0000 (15:36 +0100)
committerThe Qt Project <gerrit-noreply@qt-project.org>
Thu, 6 Dec 2012 15:45:52 +0000 (16:45 +0100)
Change-Id: I3898c89e54aa671ff8cb1b25c49cfe3835ab9384
Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
src/sql/kernel/qsqldriver.cpp
src/sql/models/qsqlrelationaldelegate.cpp
src/sql/models/qsqlrelationaltablemodel.cpp

index 62ec4e7..841c563 100644 (file)
@@ -218,6 +218,7 @@ bool QSqlDriver::isOpenError() const
     \value EventNotifications Whether the driver supports database event notifications.
     \value FinishQuery Whether the driver can do any low-level resource cleanup when QSqlQuery::finish() is called.
     \value MultipleResultSets Whether the driver can access multiple result sets returned from batched statements or stored procedures.
+    \value CancelQuery Whether the driver allows cancelling a running query.
 
     More information about supported features can be found in the
     \l{sql-driver.html}{Qt SQL driver} documentation.
index af50c03..e040789 100644 (file)
@@ -45,6 +45,7 @@ QT_BEGIN_NAMESPACE
 
 /*!
     \class QSqlRelationalDelegate
+    \inmodule QtSql
     \brief The QSqlRelationalDelegate class provides a delegate that is used to
     display and edit data from a QSqlRelationalTableModel.
 
@@ -88,11 +89,6 @@ QT_BEGIN_NAMESPACE
 */
 
 /*!
-    \fn void QSqlRelationalDelegate::setEditorData(QWidget *editor, const QModelIndex &index) const
-    \reimp
-*/
-
-/*!
     \fn void QSqlRelationalDelegate::setModelData(QWidget *editor, QAbstractItemModel *model,
                                                   const QModelIndex &index) const
     \reimp
index c3637f0..29a7039 100644 (file)
@@ -67,6 +67,7 @@ typedef QSqlRelationalTableModelSql Sql;
 
 /*!
     \class QSqlRelation
+    \inmodule QtSql
     \brief The QSqlRelation class stores information about an SQL foreign key.
 
     QSqlRelation is a helper class for QSqlRelationalTableModel. See