summaryrefslogtreecommitdiff
path: root/src/urlbar/listitem.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2012-02-16 19:23:13 +0100
committerAndrea Diamantini <adjam7@gmail.com>2012-02-16 19:23:13 +0100
commit739df1fcbcae90a4b15ec9c411514b547062905a (patch)
tree8f070c3fbd584528fc03753f2f1a10358db8dbb3 /src/urlbar/listitem.cpp
parentUpdate RELEASE_HOWTO file (diff)
parentKrazy fixes (diff)
downloadrekonq-739df1fcbcae90a4b15ec9c411514b547062905a.tar.xz
Merge branch 'Branches.0.9'
Diffstat (limited to 'src/urlbar/listitem.cpp')
-rw-r--r--src/urlbar/listitem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/urlbar/listitem.cpp b/src/urlbar/listitem.cpp
index d3e95ef3..c66d3727 100644
--- a/src/urlbar/listitem.cpp
+++ b/src/urlbar/listitem.cpp
@@ -391,8 +391,8 @@ ImageLabel::ImageLabel(const QString &url, int width, int height, QWidget *paren
else
{
KIO::TransferJob *job = KIO::get(KUrl(url), KIO::NoReload, KIO::HideProgressInfo);
- connect(job, SIGNAL(data(KIO::Job*, QByteArray)),
- this, SLOT(slotData(KIO::Job*, QByteArray)));
+ connect(job, SIGNAL(data(KIO::Job*,QByteArray)),
+ this, SLOT(slotData(KIO::Job*,QByteArray)));
connect(job, SIGNAL(result(KJob*)),
this, SLOT(slotResult(KJob*)));
}