~l3on/ubuntu/precise/rkward/rebuild1

« back to all changes in this revision

Viewing changes to rkward/rbackend/rcommand.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Friedrichsmeier
  • Date: 2010-10-04 14:30:00 UTC
  • mfrom: (12.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20101004143000-qey73molmxxwy4w6
Tags: 0.5.4-1
* new upstream release
* bump standards version to 3.9.1 (no changes needed)
* no more need to remove svncopy.sh-script in rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
        for (QList<ROutput*>::const_iterator it = output_list.constBegin (); it != output_list.constEnd (); ++it) {
70
70
                delete (*it);
71
71
        }
 
72
        delete [] receivers;
72
73
        // The output_list itself is cleared automatically
73
74
}
74
75
 
112
113
        RK_TRACE (RBACKEND);
113
114
 
114
115
        for (int i=0; i < num_receivers; ++i) {
 
116
                receivers[i]->delCommand (this);
115
117
                receivers[i]->rCommandDone (this);
116
 
                receivers[i]->delCommand (this);
117
118
        }
118
119
}
119
120