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

« back to all changes in this revision

Viewing changes to konq-plugins/webarchiver/archivedialog.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:
259
259
 
260
260
        Q_ASSERT(m_job == NULL);
261
261
        m_job = startDownload( url, info.part );
262
 
        connect(m_job, SIGNAL( result(KJob *) ), SLOT( slotObjectFinished(KJob *) ) );
 
262
        connect(m_job, SIGNAL(result(KJob*)), SLOT(slotObjectFinished(KJob*)) );
263
263
    }
264
264
}
265
265
 
313
313
 
314
314
        Q_ASSERT(m_job == NULL);
315
315
        m_job = startDownload( url, info.part );
316
 
        connect(m_job, SIGNAL( result( KJob* ) ), SLOT( slotStyleSheetFinished( KJob * ) ) );
 
316
        connect(m_job, SIGNAL(result(KJob*)), SLOT(slotStyleSheetFinished(KJob*)) );
317
317
    }
318
318
}
319
319