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

  • Committer: Jelmer Vernooij
  • Date: 2011-11-02 11:11:06 UTC
  • mfrom: (734.1.55 gtk3)
  • Revision ID: jelmer@samba.org-20111102111106-7l0vso8eg24dpf87
Merge gtk3 support from Curtis.

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
            webbrowser._tryorder.insert(0, '%s "%%s"' % cmd)
52
52
    webbrowser.open(uri)
53
53
 
54
 
if getattr(Gtk, 'link_button_set_uri_hook', None) is not None:
55
 
    Gtk.link_button_set_uri_hook(_open_link)
56
54
 
57
55
class BugsTab(Gtk.VBox):
58
56
 
327
325
    }
328
326
 
329
327
    def __init__(self, branch=None, repository=None):
330
 
        Gtk.Notebook.__init__(self)
 
328
        super(RevisionView, self).__init__()
331
329
 
332
330
        self._revision = None
333
331
        self._branch = branch
552
550
                button.add(image)
553
551
                button.connect("clicked", self._show_clicked_cb,
554
552
                               self._revision.revision_id, revid)
555
 
                hbox.pack_start(button, False, True, True, 0)
 
553
                hbox.pack_start(button, False, True, 0)
556
554
                button.show()
557
555
 
558
556
            button = Gtk.Button()
689
687
 
690
688
        self.connect('notify::revision', self._add_tags)
691
689
 
692
 
        self.avatarsbox.show()
693
690
        return self.avatarsbox
694
691
    
695
692
    def _create_parents(self):