/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-02 14:49:57 UTC
  • mto: (330.6.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 341.
  • Revision ID: daniel.schierbeck@gmail.com-20071102144957-8r4lp70ma5bpk8r8
Renamed logview 'revisionview'.

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