/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: Daniel Schierbeck
  • Date: 2007-11-21 19:08:07 UTC
  • mto: (450.1.11 trunk) (399.1.17 signatures)
  • mto: This revision was merged to the branch mainline in revision 458.
  • Revision ID: daniel.schierbeck@gmail.com-20071121190807-ixby5rvtt39xnqlz
Added icon to the signature page.

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