diff options
| -rw-r--r-- | Source/WebKit/qt/WidgetApi/qwebview.cpp | 4 | ||||
| -rw-r--r-- | Source/WebKit/qt/docs/webkitsnippets/simple/main.cpp | 2 |
2 files changed, 1 insertions, 5 deletions
diff --git a/Source/WebKit/qt/WidgetApi/qwebview.cpp b/Source/WebKit/qt/WidgetApi/qwebview.cpp index 9ba962178..7b8e0227f 100644 --- a/Source/WebKit/qt/WidgetApi/qwebview.cpp +++ b/Source/WebKit/qt/WidgetApi/qwebview.cpp @@ -82,10 +82,6 @@ void QWebViewPrivate::_q_pageDestroyed() It can be used in various applications to display web content live from the Internet. - The image below shows QWebView previewed in \QD with a Nokia website. - - \image qwebview-url.png - A web site can be loaded onto QWebView with the load() function. Like all Qt widgets, the show() function must be invoked in order to display QWebView. The snippet below illustrates this: diff --git a/Source/WebKit/qt/docs/webkitsnippets/simple/main.cpp b/Source/WebKit/qt/docs/webkitsnippets/simple/main.cpp index 408630eb1..926757b5a 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.nokia.com/")); + view->load(QUrl("http://qt-project.org")); view->show(); //! [Using QWebView] return app.exec(); |
