Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

histdetails: fix typo in variable name

Changeset 526c75476860

Parent df3ade6a0a83

by Adrian Buehlmann

Changes to one file · Browse files at 526c75476860 Showing diff from parent df3ade6a0a83 Diff from another changeset...

 
43
44
45
46
 
47
48
 
49
50
51
 
83
84
85
86
87
 
 
88
89
90
 
43
44
45
 
46
47
 
48
49
50
51
 
83
84
85
 
 
86
87
88
89
90
@@ -43,9 +43,9 @@
  self.vbox.pack_start(mainhbox)     leftvbox = gtk.VBox() - rightvox = gtk.VBox() + rightvbox = gtk.VBox()   mainhbox.pack_start(leftvbox, True, True) - mainhbox.pack_start(rightvox, False, False) + mainhbox.pack_start(rightvbox, False, False)     tv = self.tv = gtk.TreeView(model)   tv.set_headers_visible(False) @@ -83,8 +83,8 @@
  self.down_button = gtk.Button(_('Move Down'))   self.down_button.connect('clicked', self.down_clicked)   - rightvox.pack_start(self.up_button, False, False) - rightvox.pack_start(self.down_button, False, False, 4) + rightvbox.pack_start(self.up_button, False, False) + rightvbox.pack_start(self.down_button, False, False, 4)     self.show_all()