diff options
author | Bea Lam <bea.lam@nokia.com> | 2010-06-10 00:49:13 (GMT) |
---|---|---|
committer | Bea Lam <bea.lam@nokia.com> | 2010-06-10 01:23:50 (GMT) |
commit | d346ba1ec7a1becd5120fbe181da0374606481c6 (patch) | |
tree | 72c7a4062209068e2115939ff763f42b7a288401 | |
parent | 8bb9652901085ad27e757848b587fff2ca4c7857 (diff) | |
download | Qt-d346ba1ec7a1becd5120fbe181da0374606481c6.zip Qt-d346ba1ec7a1becd5120fbe181da0374606481c6.tar.gz Qt-d346ba1ec7a1becd5120fbe181da0374606481c6.tar.bz2 |
Add 'on' prefix to documentation of signals
-rw-r--r-- | src/declarative/graphicsitems/qdeclarativetext.cpp | 2 | ||||
-rw-r--r-- | src/imports/webkit/qdeclarativewebview.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/declarative/graphicsitems/qdeclarativetext.cpp b/src/declarative/graphicsitems/qdeclarativetext.cpp index f4722c3..3b89ad9 100644 --- a/src/declarative/graphicsitems/qdeclarativetext.cpp +++ b/src/declarative/graphicsitems/qdeclarativetext.cpp @@ -1171,7 +1171,7 @@ void QDeclarativeText::mousePressEvent(QGraphicsSceneMouseEvent *event) } /*! - \qmlsignal Text::linkActivated(link) + \qmlsignal Text::onLinkActivated(link) This handler is called when the user clicks on a link embedded in the text. */ diff --git a/src/imports/webkit/qdeclarativewebview.cpp b/src/imports/webkit/qdeclarativewebview.cpp index 9e5647f..383f1ce 100644 --- a/src/imports/webkit/qdeclarativewebview.cpp +++ b/src/imports/webkit/qdeclarativewebview.cpp @@ -1163,9 +1163,9 @@ QString QDeclarativeWebPage::chooseFile(QWebFrame *originatingFrame, const QStri } /*! - \qmlsignal WebView::alert(message) + \qmlsignal WebView::onAlert(message) - This signal is emitted when the web engine sends a JavaScript alert. The \a message is the text + This handler is called when the web engine sends a JavaScript alert. The \a message is the text to be displayed in the alert to the user. */ |