summaryrefslogtreecommitdiffstats
path: root/logic/net/NetJob.h
diff options
context:
space:
mode:
Diffstat (limited to 'logic/net/NetJob.h')
-rw-r--r--logic/net/NetJob.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/logic/net/NetJob.h b/logic/net/NetJob.h
index 4ac6d769..9e4656c7 100644
--- a/logic/net/NetJob.h
+++ b/logic/net/NetJob.h
@@ -49,10 +49,10 @@ public:
// if this is already running, the action needs to be started right away!
if (isRunning())
{
- emit progress(current_progress, total_progress);
+ setProgress(current_progress, total_progress);
connect(base.get(), SIGNAL(succeeded(int)), SLOT(partSucceeded(int)));
connect(base.get(), SIGNAL(failed(int)), SLOT(partFailed(int)));
- connect(base.get(), SIGNAL(progress(int, qint64, qint64)),
+ connect(base.get(), SIGNAL(netActionProgress(int, qint64, qint64)),
SLOT(partProgress(int, qint64, qint64)));
base->start();
}