(self, title, description, task, parent, flags, buttons)
| 236 | |
| 237 | class ProgressDialog(gtk.Dialog): |
| 238 | def __init__(self, title, description, task, parent, flags, buttons): |
| 239 | gtk.Dialog.__init__(self, title, parent, flags, buttons) |
| 240 | self._create_ui(title, description, task) |
| 241 | |
| 242 | def _create_ui(self, title, description, task): |
| 243 | self.set_border_width(6) |
nothing calls this directly
no test coverage detected