~ubuntu-branches/debian/sid/kde-baseapps/sid

« back to all changes in this revision

Viewing changes to keditbookmarks/faviconupdater.cpp

  • Committer: Package Import Robot
  • Author(s): Modestas Vainius, Eshat Cakar, Pino Toscano
  • Date: 2012-06-09 22:18:08 UTC
  • mfrom: (4.2.1) (6.1.1 experimental)
  • Revision ID: package-import@ubuntu.com-20120609221808-h1l0ekd5qmb8nefr
Tags: 4:4.8.4-1
* New upstream release.

[ Eshat Cakar ]
* Add watch file.
* Bump kde-sc-dev-latest build dependency to version 4:4.8.4.
* Update installed files.

[ Pino Toscano ]
* Move files of the konqueror documentation from kde-baseapps-data to
  konqueror itself.

Show diffs side-by-side

added added

removed removed

Lines of Context:
165
165
    : m_part(part), m_url(url) {
166
166
 
167
167
    //FIXME only connect to result?
168
 
//  connect(part, SIGNAL( result(KIO::Job * job)),
169
 
//          this, SLOT( slotCompleted()));
 
168
//  connect(part, SIGNAL(result(KIO::Job*job)),
 
169
//          this, SLOT(slotCompleted()));
170
170
    connect(part, SIGNAL(canceled(QString)),
171
171
            this, SLOT(slotCanceled(QString)));
172
172
    connect(part, SIGNAL(completed(bool)),
178
178
    kDebug() << "starting KIO::get() on" << m_url;
179
179
    KIO::Job *job = KIO::get(m_url, KIO::NoReload, KIO::HideProgressInfo);
180
180
    job->addMetaData( QString("cookies"), QString("none") );
181
 
    connect(job, SIGNAL( result( KJob *)),
182
 
            this, SLOT( slotFinished(KJob *) ));
183
 
    connect(job, SIGNAL( mimetype( KIO::Job *, const QString &) ),
184
 
            this, SLOT( slotMimetype(KIO::Job *, const QString &) ));
 
181
    connect(job, SIGNAL(result(KJob*)),
 
182
            this, SLOT(slotFinished(KJob*)));
 
183
    connect(job, SIGNAL(mimetype(KIO::Job*,QString)),
 
184
            this, SLOT(slotMimetype(KIO::Job*,QString)));
185
185
}
186
186
 
187
187
void FavIconWebGrabber::slotMimetype(KIO::Job *job, const QString & /*type*/) {