2 using System
.Collections
.Generic
;
3 using System
.ComponentModel
;
7 using System
.Windows
.Forms
;
12 public partial class CommitViewer
: Form
14 protected Commit m_commit
;
15 public CommitViewer(Commit c
)
18 InitializeComponent();
21 private void OnShowParent(object sender
, EventArgs e
)
23 Commit c
= new Commit(m_commit
.Path
, m_parents
.SelectedItem
.ToString());
24 CommitViewer v
= new CommitViewer(c
);
28 private void OnDone(object sender
, EventArgs e
)