/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to viz/about.py

  • Committer: Jelmer Vernooij
  • Date: 2008-06-29 18:12:29 UTC
  • mto: This revision was merged to the branch mainline in revision 519.
  • Revision ID: jelmer@samba.org-20080629181229-1l2m4cf7vvbyh8qg
Simplify progress bar code, use embedded progress bar inside viz window.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
import gtk
3
 
import gobject
4
 
import pango
5
 
 
6
 
import bzrlib.plugins.gtk
7
 
 
8
 
class AboutDialog(gtk.AboutDialog):
9
 
 
10
 
    def __init__(self):
11
 
        gtk.AboutDialog.__init__(self)
12
 
        self.set_name("Bazaar GTK")
13
 
        self.set_version(bzrlib.plugins.gtk.__version__)
14
 
 
15