diff options
Diffstat (limited to 'Source/WebKit/qt/docs/webkitsnippets')
-rw-r--r-- | Source/WebKit/qt/docs/webkitsnippets/qtwebkit_build_snippet.qdoc | 4 | ||||
-rw-r--r-- | Source/WebKit/qt/docs/webkitsnippets/simple/main.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Source/WebKit/qt/docs/webkitsnippets/qtwebkit_build_snippet.qdoc b/Source/WebKit/qt/docs/webkitsnippets/qtwebkit_build_snippet.qdoc index 69814b023..d4fc2bd85 100644 --- a/Source/WebKit/qt/docs/webkitsnippets/qtwebkit_build_snippet.qdoc +++ b/Source/WebKit/qt/docs/webkitsnippets/qtwebkit_build_snippet.qdoc @@ -1,8 +1,8 @@ //! [0] -QT += webkitwidgets +QT += webkit //! [0] //! [1] -#include <QtWebKitWidgets> +#include <QtWebKit> //! [1] diff --git a/Source/WebKit/qt/docs/webkitsnippets/simple/main.cpp b/Source/WebKit/qt/docs/webkitsnippets/simple/main.cpp index 926757b5a..408630eb1 100644 --- a/Source/WebKit/qt/docs/webkitsnippets/simple/main.cpp +++ b/Source/WebKit/qt/docs/webkitsnippets/simple/main.cpp @@ -27,7 +27,7 @@ int main(int argc, char *argv[]) QWidget *parent = 0; //! [Using QWebView] QWebView *view = new QWebView(parent); - view->load(QUrl("http://qt-project.org")); + view->load(QUrl("http://qt.nokia.com/")); view->show(); //! [Using QWebView] return app.exec(); |