diff options
author | Nikita Krupenko <krnekit@gmail.com> | 2015-12-31 18:02:40 +0200 |
---|---|---|
committer | Nikita Krupenko <krnekit@gmail.com> | 2016-01-01 15:29:38 +0000 |
commit | 1836451c18c557dbfc332124ef4645b3ba2bc9d4 (patch) | |
tree | e66a3acc786fa8153f7a60f340e16ba6244c27d7 /src | |
parent | c5b0e6ba917ad0e26f3350e8d8be8c188a8bc180 (diff) | |
download | qtquickcontrols-1836451c18c557dbfc332124ef4645b3ba2bc9d4.tar.gz |
Doc: fix wrong description of doubleClicked() signal in TreeView
Change-Id: I2183a869aef2c949dc1528e7b97e08c7b035c315
Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/controls/doc/src/qtquickcontrols-treeview.qdoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/controls/doc/src/qtquickcontrols-treeview.qdoc b/src/controls/doc/src/qtquickcontrols-treeview.qdoc index fb186059..f9c2e692 100644 --- a/src/controls/doc/src/qtquickcontrols-treeview.qdoc +++ b/src/controls/doc/src/qtquickcontrols-treeview.qdoc @@ -201,13 +201,13 @@ /*! \qmlsignal TreeView::doubleClicked(QModelIndex index) - Emitted when the user presses and holds a valid row in the tree. + Emitted when the user double clicks a valid row. \a index is the model index of the double clicked row in the tree. \note This signal is only emitted if the row or item delegate does not accept mouse events. - The corresponding handler is \c onPressAndHold. + The corresponding handler is \c onDoubleClicked. */ /*! |