summaryrefslogtreecommitdiff
path: root/src/download
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2012-12-28 18:32:05 +0100
committerAndrea Diamantini <adjam7@gmail.com>2012-12-28 18:32:05 +0100
commitd6c022a8b01715f50d227c938beed680ac40ace0 (patch)
tree52e2b70af1c7f5fe59f6da141bf44a794f946bb5 /src/download
parentKrazy Fixes, first shot (diff)
downloadrekonq-d6c022a8b01715f50d227c938beed680ac40ace0.tar.xz
Krazy fixes, second shot (normalize)
Diffstat (limited to 'src/download')
-rw-r--r--src/download/downloaditem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/download/downloaditem.cpp b/src/download/downloaditem.cpp
index 38edbf1e..29917fba 100644
--- a/src/download/downloaditem.cpp
+++ b/src/download/downloaditem.cpp
@@ -59,7 +59,7 @@ DownloadItem::DownloadItem(KIO::CopyJob *job, const QDateTime &d, QObject *paren
, m_job(job)
, m_state(0)
{
- QObject::connect(job, SIGNAL(percent(KJob*, ulong)), this, SLOT(updateProgress(KJob*, ulong)));
+ QObject::connect(job, SIGNAL(percent(KJob*,ulong)), this, SLOT(updateProgress(KJob*,ulong)));
QObject::connect(job, SIGNAL(finished(KJob*)), this, SLOT(onFinished(KJob*)));
QObject::connect(job, SIGNAL(suspended(KJob*)), this, SLOT(onSuspended(KJob*)));
}