summaryrefslogtreecommitdiff
path: root/src/controls/doc/src
diff options
context:
space:
mode:
Diffstat (limited to 'src/controls/doc/src')
-rw-r--r--src/controls/doc/src/qtquickcontrols-tableview.qdoc4
-rw-r--r--src/controls/doc/src/qtquickcontrols-treeview.qdoc8
2 files changed, 6 insertions, 6 deletions
diff --git a/src/controls/doc/src/qtquickcontrols-tableview.qdoc b/src/controls/doc/src/qtquickcontrols-tableview.qdoc
index 99b1202e..e118e9f6 100644
--- a/src/controls/doc/src/qtquickcontrols-tableview.qdoc
+++ b/src/controls/doc/src/qtquickcontrols-tableview.qdoc
@@ -179,7 +179,7 @@
/*!
\qmlmethod void TableView::positionViewAtRow( int row, PositionMode mode )
- Positions the view such that the specified \a row is at the position defined by \a mode:
+ Positions the view such that the specified \a row is at the position defined by \e mode:
\list
\li ListView.Beginning - position item at the top of the view.
\li ListView.Center - position item in the center of the view.
@@ -208,7 +208,7 @@
/*!
\qmlmethod int TableView::rowAt( int x, int y )
- Returns the index of the visible row at the point \a x, \a y in content
+ Returns the index of the visible row at the point \a x, \e y in content
coordinates. If there is no visible row at the point specified, \c -1 is returned.
\note This method should only be called after the component has completed.
diff --git a/src/controls/doc/src/qtquickcontrols-treeview.qdoc b/src/controls/doc/src/qtquickcontrols-treeview.qdoc
index 438eec7a..6542a939 100644
--- a/src/controls/doc/src/qtquickcontrols-treeview.qdoc
+++ b/src/controls/doc/src/qtquickcontrols-treeview.qdoc
@@ -265,7 +265,7 @@
/*!
\qmlmethod bool TreeView::isExpanded(QModelIndex index)
- Returns true if the model item index is expanded; otherwise returns false.
+ Returns true if the model item at \a index is expanded; otherwise returns false.
\sa {expanded}, {expand}
*/
@@ -273,7 +273,7 @@
/*!
\qmlmethod void TreeView::collapse(QModelIndex index)
- Collapses the model item specified by the index.
+ Collapses the model item specified by the \a index.
\sa {collapsed}, {isExpanded}
*/
@@ -281,7 +281,7 @@
/*!
\qmlmethod void TreeView::expand(QModelIndex index)
- Expands the model item specified by the index.
+ Expands the model item specified by the \a index.
\sa {expanded}, {isExpanded}
*/
@@ -289,7 +289,7 @@
/*!
\qmlmethod QModelIndex TreeView::indexAt( int x, int y )
- Returns the model index of the visible row at the point \a x, \a y in content
+ Returns the model index of the visible row at the point \a x, \e y in content
coordinates. If there is no visible row at the point specified, an invalid
\l QModelIndex is returned.