(self, title, description, task, parent, flags, buttons)
| 271 | |
| 272 | class ProgressDialog(gtk.Dialog): |
| 273 | def __init__(self, title, description, task, parent, flags, buttons): |
| 274 | gtk.Dialog.__init__(self, title, parent, flags, buttons) |
| 275 | self._create_ui(title, description, task) |
| 276 | |
| 277 | def _create_ui(self, title, description, task): |
| 278 | self.set_border_width(6) |
nothing calls this directly
no test coverage detected