summaryrefslogtreecommitdiffstats
path: root/WebKit/qt/docs/webkitsnippets/simple
diff options
context:
space:
mode:
Diffstat (limited to 'WebKit/qt/docs/webkitsnippets/simple')
-rw-r--r--WebKit/qt/docs/webkitsnippets/simple/main.cpp34
-rw-r--r--WebKit/qt/docs/webkitsnippets/simple/simple.pro2
2 files changed, 0 insertions, 36 deletions
diff --git a/WebKit/qt/docs/webkitsnippets/simple/main.cpp b/WebKit/qt/docs/webkitsnippets/simple/main.cpp
deleted file mode 100644
index 408630e..0000000
--- a/WebKit/qt/docs/webkitsnippets/simple/main.cpp
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies)
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public License
- along with this library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
-*/
-
-#include <QApplication>
-#include <QUrl>
-#include <QWebView>
-
-int main(int argc, char *argv[])
-{
- QApplication app(argc, argv);
- QWidget *parent = 0;
-//! [Using QWebView]
- QWebView *view = new QWebView(parent);
- view->load(QUrl("http://qt.nokia.com/"));
- view->show();
-//! [Using QWebView]
- return app.exec();
-}
diff --git a/WebKit/qt/docs/webkitsnippets/simple/simple.pro b/WebKit/qt/docs/webkitsnippets/simple/simple.pro
deleted file mode 100644
index 61cd3bf..0000000
--- a/WebKit/qt/docs/webkitsnippets/simple/simple.pro
+++ /dev/null
@@ -1,2 +0,0 @@
-QT += webkit
-SOURCES = main.cpp