diff options
author | Martin Smith <msmith@trolltech.com> | 2009-04-24 09:27:01 (GMT) |
---|---|---|
committer | Martin Smith <msmith@trolltech.com> | 2009-04-24 09:27:01 (GMT) |
commit | f3af81e7dcff1d7bd3c8e5a80d33bce1426e04a2 (patch) | |
tree | 9594c17c362ca0e1a6d49052e528146eed1a6412 | |
parent | 7fc2539cd880b42995d0a265e75c17f9548f52d2 (diff) | |
download | Qt-f3af81e7dcff1d7bd3c8e5a80d33bce1426e04a2.zip Qt-f3af81e7dcff1d7bd3c8e5a80d33bce1426e04a2.tar.gz Qt-f3af81e7dcff1d7bd3c8e5a80d33bce1426e04a2.tar.bz2 |
qdoc: Corrected a few qdoc warnings.
-rw-r--r-- | src/declarative/fx/qfxwebview.cpp | 30 | ||||
-rw-r--r-- | src/declarative/fx/qfxwebview.h | 4 |
2 files changed, 20 insertions, 14 deletions
diff --git a/src/declarative/fx/qfxwebview.cpp b/src/declarative/fx/qfxwebview.cpp index a5d2ac3..05e2f65 100644 --- a/src/declarative/fx/qfxwebview.cpp +++ b/src/declarative/fx/qfxwebview.cpp @@ -372,12 +372,16 @@ void QFxWebView::setIdealHeight(int ih) } /*! - \qmlproperty bool WebView::interactive - This property holds controls whether the item responds to mouse and key events. + \qmlproperty bool WebView::interactive + + This property holds controls whether the item responds to mouse and + key events. */ + /*! - \property QFxWebView::interactive - \brief controls whether the item responds to mouse and key events. + \property QFxWebView::interactive + + \brief controls whether the item responds to mouse and key events. */ bool QFxWebView::interactive() const { @@ -458,19 +462,19 @@ void QFxWebView::paintPage(const QRect& r) } /*! - \qmlproperty int WebView::cacheSize - This property holds the maximum number of pixels of image cache to allow + \qmlproperty int WebView::cacheSize - The default is 0.1 megapixels. - - The cache will not be larger than the (unscaled) size of the WebView. + This property holds the maximum number of pixels of image cache to + allow. The default is 0.1 megapixels. The cache will not be larger + than the (unscaled) size of the WebView. */ + /*! - \property QFxWebView::cacheSize - \brief the maximum number of pixels of image cache to allow - The default is 0.1 megapixels. + \property QFxWebView::cacheSize - The cache will not be larger than the (unscaled) size of the QFxWebView. + The maximum number of pixels of image cache to allow. The default + is 0.1 megapixels. The cache will not be larger than the (unscaled) + size of the QFxWebView. */ int QFxWebView::cacheSize() const { diff --git a/src/declarative/fx/qfxwebview.h b/src/declarative/fx/qfxwebview.h index 463d0c4..1eede52 100644 --- a/src/declarative/fx/qfxwebview.h +++ b/src/declarative/fx/qfxwebview.h @@ -92,8 +92,10 @@ class Q_DECLARATIVE_EXPORT QFxWebView : public QFxItem Q_PROPERTY(int idealHeight READ idealHeight WRITE setIdealHeight NOTIFY idealHeightChanged) Q_PROPERTY(QString url READ url WRITE setUrl NOTIFY urlChanged) Q_PROPERTY(bool smooth READ smooth WRITE setSmooth) - Q_PROPERTY(qreal progress READ progress NOTIFY progressChanged()) + Q_PROPERTY(qreal progress READ progress NOTIFY progressChanged) + Q_PROPERTY(bool interactive READ interactive WRITE setInteractive NOTIFY interactiveChanged) + Q_PROPERTY(int cacheSize READ cacheSize WRITE setCacheSize) Q_PROPERTY(QObject* reload READ reloadAction) |