diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2012-02-16 19:20:27 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2012-02-16 19:20:27 +0100 |
commit | 2f13db3514ee77317b889904baa657b0257d962a (patch) | |
tree | 7c805e3cfc366ee9eb86636520e1e57106db3eaa /src/urlbar/listitem.cpp | |
parent | SVN_SILENT made messages (.desktop file) (diff) | |
download | rekonq-2f13db3514ee77317b889904baa657b0257d962a.tar.xz |
Krazy fixes
- doublequote_chars
- normalize
Diffstat (limited to 'src/urlbar/listitem.cpp')
-rw-r--r-- | src/urlbar/listitem.cpp | 4 |
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*))); } |