summaryrefslogtreecommitdiffstats
path: root/src/fbgui.cpp
diff options
context:
space:
mode:
authorJonathan Bauer2011-03-04 23:51:45 +0100
committerJonathan Bauer2011-03-04 23:51:45 +0100
commit0d711f2fc464eb05866cd9c329b57ec279a98971 (patch)
tree80e76c58f4336f61be40cef18435626e270b822f /src/fbgui.cpp
parentdefault url for testApp.sh (diff)
downloadfbgui-0d711f2fc464eb05866cd9c329b57ec279a98971.tar.gz
fbgui-0d711f2fc464eb05866cd9c329b57ec279a98971.tar.xz
fbgui-0d711f2fc464eb05866cd9c329b57ec279a98971.zip
Code cleanup, JSO class continued, added webkitTest.html for reference
Diffstat (limited to 'src/fbgui.cpp')
-rw-r--r--src/fbgui.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/fbgui.cpp b/src/fbgui.cpp
index f3a77c1..8cd58bc 100644
--- a/src/fbgui.cpp
+++ b/src/fbgui.cpp
@@ -1,7 +1,6 @@
#include "fbgui.h"
#include "fbbrowser.h"
#include "DownloadManager.h"
-#include "DMThread.h"
#include <getopt.h>
#include <limits.h>
#include <unistd.h>
@@ -66,7 +65,7 @@ int main(int argc, char *argv[])
fbbrowser* fbb = new fbbrowser(url);
// Listen to the signalQuitAll() Signal to kill the app from within the browser.
- QObject::connect(fbb, SIGNAL(signalQuitAll()), &a, SLOT(quit()));
+ QObject::connect(fbb, SIGNAL(killApp()), &a, SLOT(quit()));
// Display the browser.
fbb->show();