summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Shaw <andy.shaw@digia.com>2013-02-11 14:46:03 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-02-15 13:42:56 +0100
commitdec729066c60d99469a61f012e1fdcefdeab217e (patch)
tree2eb3071cebb80c83086354245b2c3fb17baa1aaa
parenteed5333306d385d20543bbff4a42d70d3efde4ea (diff)
downloadqtdoc-dec729066c60d99469a61f012e1fdcefdeab217e.tar.gz
Add note about porting a QtWebKit application to Qt 5
When using the widgets it is necessary to include QtWebKitWidgets now so a note is added about that. Change-Id: I81a36ecc7cac3e8efcfbe1bfa1e5446b1970c9ed Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
-rw-r--r--doc/src/portingcppapps_toqt5.qdoc9
-rw-r--r--doc/src/portingguide.qdoc2
2 files changed, 11 insertions, 0 deletions
diff --git a/doc/src/portingcppapps_toqt5.qdoc b/doc/src/portingcppapps_toqt5.qdoc
index e6f68e50..e6ea08aa 100644
--- a/doc/src/portingcppapps_toqt5.qdoc
+++ b/doc/src/portingcppapps_toqt5.qdoc
@@ -46,6 +46,15 @@ This creates the \c animatedtiles executable. Try running the executable to see
\image animatedtiles_snapshot.png "A snapshot of the \c animatedtiles application running on Ubuntu v12.04"
+A similar change is needed for porting Qt 4 applications using Qt WebKit to Qt 5. The following
+step-by-step instructions take you through the changes required to achieve this:
+
+\list 1
+ \li If using \c {#include <QtWebKit>}, add \c {#include <QtWebKitWidgets} in your source code.
+ \li Edit the pro file and add \c {QT += webkitwidgets} towards the end of the file.
+ \li Run qmake and make utilities to build the binary.
+\endlist
+
\section1 Related topics
\list
\li \l {API Changes}
diff --git a/doc/src/portingguide.qdoc b/doc/src/portingguide.qdoc
index 75c52b48..0d124e10 100644
--- a/doc/src/portingguide.qdoc
+++ b/doc/src/portingguide.qdoc
@@ -56,6 +56,8 @@ The following list summarizes the changes in Qt 5:
Quick (2.0) from now on to avoid binary breaks in the future.
\li Qt3Support - This module is removed in Qt 5, so you must move away from
this module before porting your codebase to Qt 5.
+ \li Qt WebKit - This module has been split into two, there is now a \l{Qt WebKit}
+ and a \l{Qt WebKit Widgets} module.
\endlist
\section1 Related Topics