~ubuntu-branches/ubuntu/precise/kubuntu-notification-helper/precise

« back to all changes in this revision

Viewing changes to src/daemon/hookevent/hookgui.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Thomas
  • Date: 2010-01-19 15:10:57 UTC
  • Revision ID: james.westby@ubuntu.com-20100119151057-vyzibc2kexqjp3hz
Tags: 0.4.95ubuntu1
* New upstream release:
* Bump debhelper build-depend to the lowest that supports source format 3.0
* Bump pkg-kde-tools build-depend version to 0.5.0 or greater; the kde
  debhelper sequence requires it
* Add apport-gtk as an alternative to apport-kde for the Recommends field
* Fix typo in the -dbg package's long description
* Remove kubuntu.mk from debian/rules, using the kde dh sequence provides
  this by default now

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
    // Take the parsed upgrade hook(s) and put them in pages
69
69
    const QString language =  KGlobal::locale()->language();
70
70
    QSignalMapper *signalMapper = new QSignalMapper(m_dialog);
71
 
    QList<Hook*>::iterator i;
72
 
    for (i = hooks.begin(); i !=  hooks.end(); ++i) {
 
71
    QList<Hook*>::const_iterator i;
 
72
    for (i = hooks.constBegin(); i !=  hooks.end(); ++i) {
73
73
        Hook *hook = *i;
74
74
 
75
75
        KVBox *vbox = new KVBox();