summaryrefslogtreecommitdiffstats
path: root/webkitTest/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'webkitTest/main.cpp')
-rw-r--r--webkitTest/main.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/webkitTest/main.cpp b/webkitTest/main.cpp
deleted file mode 100644
index d6ab041..0000000
--- a/webkitTest/main.cpp
+++ /dev/null
@@ -1,22 +0,0 @@
-#include "webkittest.h"
-
-#include <QtGui>
-#include <QApplication>
-
-int main(int argc, char *argv[])
-{
- QApplication a(argc, argv);
- a.connect(&a, SIGNAL(lastWindowClosed()), &a, SLOT(quit()));
-
- QUrl url;
- if (argc > 1)
- url = QUrl(argv[1]);
- else
- url = QUrl("http://132.230.4.3/webkitTest.html");
-
- webkitTest *w = new webkitTest(0, url);
- //w.setUrl(url);
- w->show();
-
- return a.exec();
-}