summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJason McDonald <jason.mcdonald@nokia.com>2009-11-20 03:30:07 (GMT)
committerJason McDonald <jason.mcdonald@nokia.com>2009-11-20 03:30:07 (GMT)
commitf284deea53e9ce30e27c62167803dad0759c2763 (patch)
tree070f25299f1f0fab8b56b27bc3810f065f2bd2bf /doc
parenta8eb11380e2dde76eccb3f70aa5da4c9490fbee7 (diff)
downloadQt-f284deea53e9ce30e27c62167803dad0759c2763.zip
Qt-f284deea53e9ce30e27c62167803dad0759c2763.tar.gz
Qt-f284deea53e9ce30e27c62167803dad0759c2763.tar.bz2
Revert "Doc: Added an example to demonstrate the QWebElement class."
This reverts commit 19d63f4d932ae16d0e1c69892681ecd1fabeb44c. Conflicts: doc/src/qt4-intro.qdoc
Diffstat (limited to 'doc')
-rw-r--r--doc/src/diagrams/webkit-simpleselector.pngbin82564 -> 0 bytes
-rw-r--r--doc/src/images/webkit-simpleselector.pngbin130292 -> 0 bytes
-rw-r--r--doc/src/qt4-intro.qdoc6
3 files changed, 5 insertions, 1 deletions
diff --git a/doc/src/diagrams/webkit-simpleselector.png b/doc/src/diagrams/webkit-simpleselector.png
deleted file mode 100644
index e442f97..0000000
--- a/doc/src/diagrams/webkit-simpleselector.png
+++ /dev/null
Binary files differ
diff --git a/doc/src/images/webkit-simpleselector.png b/doc/src/images/webkit-simpleselector.png
deleted file mode 100644
index 2c888ca..0000000
--- a/doc/src/images/webkit-simpleselector.png
+++ /dev/null
Binary files differ
diff --git a/doc/src/qt4-intro.qdoc b/doc/src/qt4-intro.qdoc
index a77c3e1..48dea4a 100644
--- a/doc/src/qt4-intro.qdoc
+++ b/doc/src/qt4-intro.qdoc
@@ -583,7 +583,11 @@
DOM, helps reuse CSS selector knowledge, and gives little
maintenance or footprint overhead.
- \snippet webkitsnippets/webelement/main.cpp FindAll
+ \code
+ QWebElement document = frame->documentElement();
+ QList<QWebElement> allSpans = document.findAll("span");
+ QList<QWebElement> introSpans = document.findAll("p.intro span");
+ \endcode
See the QWebElement class documentation for more information.