~jonnyjd/bzrlog/trunk

« back to all changes in this revision

Viewing changes to pygg.py

  • Committer: Franck Pommereau
  • Date: 2008-07-17 19:20:20 UTC
  • Revision ID: pommereau@univ-paris12.fr-20080717192020-e3kz2crz9cs3nooe
 * improved export dialog

Show diffs side-by-side

added added

removed removed

Lines of Context:
165
165
class Dialog (Window) :
166
166
    """A dialog window. It has a method run, as Dialog widgets, but
167
167
    which also hode the dialog on return."""
168
 
    def _build (self, *args) :
169
 
        Window._build(self, *args)
170
168
    def run (self) :
171
169
        result = getattr(self, self.__class__.__name__).run()
172
170
        self.hide()