/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 notify.py

  • Committer: Jelmer Vernooij
  • Date: 2007-07-15 15:05:06 UTC
  • Revision ID: jelmer@samba.org-20070715150506-1uemecr5kt7d4kvg
Fix whitespace, add comment.

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
        item.connect('activate', self.show_about)
53
53
        self.append(item)
54
54
        self.append(gtk.SeparatorMenuItem())
55
 
        item = gtk.ImageMenuItem(gtk.STOCK_QUIT, None)
 
55
        item = gtk.MenuItem('_Close')
56
56
        item.connect('activate', gtk.main_quit)
57
57
        self.append(item)
58
58
        self.show_all()