diff options
Diffstat (limited to 'Source/WebKit/qt/docs/webkitsnippets')
-rw-r--r-- | Source/WebKit/qt/docs/webkitsnippets/simple/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |