/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: Daniel Schierbeck
  • Date: 2007-11-03 17:35:46 UTC
  • mfrom: (330.2.3 dev)
  • Revision ID: daniel.schierbeck@gmail.com-20071103173546-r4e4jfdq88mmf6rb
Merged with trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
from bzrlib.osutils import format_date
24
24
 
25
 
class LogView(gtk.Notebook):
 
25
class RevisionView(gtk.Notebook):
26
26
    """ Custom widget for commit log details.
27
27
 
28
28
    A variety of bzr tools may need to implement such a thing. This is a
29
29
    start.
30
30
    """
31
31
 
32
 
    def __init__(self, revision=None, scroll=True, tags=[],
 
32
    def __init__(self, revision=None, tags=[],
33
33
                 show_children=False, branch=None):
34
34
        gtk.Notebook.__init__(self)
35
35
        self.show_children = show_children