summaryrefslogtreecommitdiffstats
path: root/src/fbgui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/fbgui.cpp')
-rw-r--r--src/fbgui.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/fbgui.cpp b/src/fbgui.cpp
index 5209ad1..cd3153c 100644
--- a/src/fbgui.cpp
+++ b/src/fbgui.cpp
@@ -35,13 +35,11 @@ fbgui::fbgui()
/* Init Download Manager */
DownloadManager* dm = new DownloadManager();
QObject::connect(jsi, SIGNAL(requestFile(QString&)), dm, SLOT(downloadFile(QString&)));
- QObject::connect(dm, SIGNAL(updateProgress(int)), jsi, SLOT(updateProgressBar(int)));
+ QObject::connect(dm, SIGNAL(updateProgress(QString, int)), jsi, SLOT(updateProgressBar(QString, int)));
//setWindowFlags(Qt::Window);
showFullScreen();
qDebug() << "Width: " << width() << " // Height: " << height();
- QSize size(800, 600);
- resize(size);
setCentralWidget(webView);
show();