diff options
Diffstat (limited to 'src/fbgui.cpp')
| -rw-r--r-- | src/fbgui.cpp | 3 |
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(); |
