diff options
author | Morten Engvoldsen <morten.engvoldsen@nokia.com> | 2009-05-26 10:40:02 (GMT) |
---|---|---|
committer | Morten Engvoldsen <morten.engvoldsen@nokia.com> | 2009-05-26 10:40:17 (GMT) |
commit | 54f92419b23b425e32ad573db17f608a67936df1 (patch) | |
tree | 58622656354da39a40be2234af62e558884af265 | |
parent | 3037e466ebf21aa4a47a722a1e2ff497690cbef5 (diff) | |
download | Qt-54f92419b23b425e32ad573db17f608a67936df1.zip Qt-54f92419b23b425e32ad573db17f608a67936df1.tar.gz Qt-54f92419b23b425e32ad573db17f608a67936df1.tar.bz2 |
Clearifying QWebFrame docs
Adding docs to toHtml() and toPlainText()
Task-number: 253088
Rev-by: Ariya Hidayat
Rev-by: David Boddie
-rw-r--r-- | src/3rdparty/webkit/WebKit/qt/Api/qwebframe.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/3rdparty/webkit/WebKit/qt/Api/qwebframe.cpp b/src/3rdparty/webkit/WebKit/qt/Api/qwebframe.cpp index 5dc6363..e565476 100644 --- a/src/3rdparty/webkit/WebKit/qt/Api/qwebframe.cpp +++ b/src/3rdparty/webkit/WebKit/qt/Api/qwebframe.cpp @@ -268,7 +268,7 @@ void QWebFrame::addToJavaScriptWindowObject(const QString &name, QObject *object } /*! - Returns the frame's content, converted to HTML. + Returns the frame's content as HTML, enclosed in HTML and BODY tags. \sa setHtml(), toPlainText() */ @@ -280,7 +280,8 @@ QString QWebFrame::toHtml() const } /*! - Returns the content of this frame converted to plain text. + Returns the content of this frame converted to plain text, completely + stripped of all HTML formatting. \sa toHtml() */ |