/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/progress.py

  • Committer: Martin Pool
  • Date: 2009-01-21 05:38:16 UTC
  • mto: This revision was merged to the branch mainline in revision 3956.
  • Revision ID: mbp@sourcefrog.net-20090121053816-b2eua3hvawjhguzk
Make the interface from ProgressTask to ui more private

Show diffs side-by-side

added added

removed removed

Lines of Context:
96
96
        self.current_cnt = current_cnt
97
97
        if total_cnt:
98
98
            self.total_cnt = total_cnt
99
 
        self.ui_factory.show_progress(self)
 
99
        self.ui_factory._progress_updated(self)
100
100
 
101
101
    def tick(self):
102
102
        self.update(self.msg)
103
103
 
104
104
    def finished(self):
105
 
        self.ui_factory.progress_finished(self)
 
105
        self.ui_factory._progress_finished(self)
106
106
 
107
107
    def make_sub_task(self):
108
108
        return ProgressTask(self, self.ui_factory)