summaryrefslogtreecommitdiffstats
path: root/src/fbgui.cpp
diff options
context:
space:
mode:
authorNiklas Goby2011-03-10 11:58:48 +0100
committerNiklas Goby2011-03-10 11:58:48 +0100
commit1a72d2abc96a140ce99c16e14edf7db9278f6011 (patch)
tree63777808e548691913306dff67a5da0547950a8d /src/fbgui.cpp
parentadded a test getSysInfo("all") function (diff)
parentcallback function when download queue is empty (diff)
downloadfbgui-1a72d2abc96a140ce99c16e14edf7db9278f6011.tar.gz
fbgui-1a72d2abc96a140ce99c16e14edf7db9278f6011.tar.xz
fbgui-1a72d2abc96a140ce99c16e14edf7db9278f6011.zip
Merge branch 'master' of git.openslx.org:lsfks/master-teamprojekt/fbgui
Diffstat (limited to 'src/fbgui.cpp')
-rw-r--r--src/fbgui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fbgui.cpp b/src/fbgui.cpp
index 08d7e9e..dc1891c 100644
--- a/src/fbgui.cpp
+++ b/src/fbgui.cpp
@@ -32,7 +32,7 @@ fbgui::fbgui()
DownloadManager* dm = new DownloadManager();
QObject::connect(jsi, SIGNAL(requestFile(QString&)), dm, SLOT(downloadFile(QString&)));
QObject::connect(dm, SIGNAL(updateProgress(QString, int)), jsi, SLOT(updateProgressBar(QString, int)));
- QObject::connect(dm, SIGNAL(downloadQueueEmpty()), jsi, SLOT(setCallbackOnDlQueueFinished()));
+ QObject::connect(dm, SIGNAL(downloadQueueEmpty()), jsi, SLOT(callbackOnDlQueueFinished()));
setWindowFlags(Qt::Window);
showFullScreen();
setCentralWidget(webView);