summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/src/images/qwebview-url.pngbin191610 -> 0 bytes
-rw-r--r--src/3rdparty/webkit/Source/WebKit/qt/Api/qwebview.cpp4
-rw-r--r--src/3rdparty/webkit/Source/WebKit/qt/docs/webkitsnippets/simple/main.cpp2
3 files changed, 1 insertions, 5 deletions
diff --git a/doc/src/images/qwebview-url.png b/doc/src/images/qwebview-url.png
deleted file mode 100644
index 3c40080851..0000000000
--- a/doc/src/images/qwebview-url.png
+++ /dev/null
Binary files differ
diff --git a/src/3rdparty/webkit/Source/WebKit/qt/Api/qwebview.cpp b/src/3rdparty/webkit/Source/WebKit/qt/Api/qwebview.cpp
index 76b927bace..1d15aa80f9 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 408630eb11..926757b5ad 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();