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

history: kill self.loadnextbutton and self.loadallbutton

These are now unused. Defining local vars instead.

Changeset f477117cb1c0

Parent b7a470773a85

by Adrian Buehlmann

Changes to one file · Browse files at f477117cb1c0 Showing diff from parent b7a470773a85 Diff from another changeset...

 
774
775
776
777
 
778
779
780
 
781
782
783
784
785
 
786
787
788
 
774
775
776
 
777
778
779
 
780
781
782
783
784
 
785
786
787
788
@@ -774,15 +774,15 @@
  sep = gtk.SeparatorToolItem()   sep.set_expand(True)   sep.set_draw(False) - self.loadnextbutton = self.make_toolbutton(gtk.STOCK_GO_DOWN, + loadnext = self.make_toolbutton(gtk.STOCK_GO_DOWN,   _('Load more'), self.more_clicked, tip=_('load more revisions'),   name='load-more') - self.loadallbutton = self.make_toolbutton(gtk.STOCK_GOTO_BOTTOM, + loadall = self.make_toolbutton(gtk.STOCK_GOTO_BOTTOM,   _('Load all'), self.load_all_clicked, tip=_('load all revisions'),   name='load-all')     tbar = self.changeview.get_tbbuttons() - tbar += [sep, self.loadnextbutton, self.loadallbutton] + tbar += [sep, loadnext, loadall]   for tbutton in tbar:   self.toolbar.insert(tbutton, -1)