diff options
-rw-r--r-- | doc/src/images/qwebview-url.png | bin | 191610 -> 0 bytes | |||
-rw-r--r-- | src/3rdparty/webkit/Source/WebKit/qt/Api/qwebview.cpp | 4 | ||||
-rw-r--r-- | src/3rdparty/webkit/Source/WebKit/qt/docs/webkitsnippets/simple/main.cpp | 2 |
3 files changed, 1 insertions, 5 deletions
diff --git a/doc/src/images/qwebview-url.png b/doc/src/images/qwebview-url.png Binary files differdeleted file mode 100644 index 3c40080..0000000 --- a/doc/src/images/qwebview-url.png +++ /dev/null diff --git a/src/3rdparty/webkit/Source/WebKit/qt/Api/qwebview.cpp b/src/3rdparty/webkit/Source/WebKit/qt/Api/qwebview.cpp index 76b927b..1d15aa8 100644 --- a/src/3rdparty/webkit/Source/WebKit/qt/Api/qwebview.cpp +++ b/src/3rdparty/webkit/Source/WebKit/qt/Api/qwebview.cpp @@ -224,10 +224,6 @@ protected: 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/src/3rdparty/webkit/Source/WebKit/qt/docs/webkitsnippets/simple/main.cpp b/src/3rdparty/webkit/Source/WebKit/qt/docs/webkitsnippets/simple/main.cpp index 408630e..926757b 100644 --- a/src/3rdparty/webkit/Source/WebKit/qt/docs/webkitsnippets/simple/main.cpp +++ b/src/3rdparty/webkit/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(); |