Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

clone: remove obsolete code

Changeset f2df215e0d4d

Parent 8579c682bb43

by Steve Borho

Changes to one file · Browse files at f2df215e0d4d Showing diff from parent 8579c682bb43 Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​clone.py Stacked
 
140
141
142
143
144
145
146
147
148
149
150
 
210
211
212
213
214
215
216
217
218
219
220
221
222
 
140
141
142
 
 
143
144
 
145
146
147
 
207
208
209
 
 
 
 
 
 
 
210
211
212
@@ -140,11 +140,8 @@
  self._rev_input.set_text("")   self._opt_allrev = gtk.CheckButton(_('Clone all revisions'))   self._opt_allrev.set_active(True) - self._btn_rev_browse = gtk.Button(_('Select...')) - self._btn_rev_browse.connect('clicked', self._btn_rev_clicked)   revbox.pack_start(lbl, False, False)   revbox.pack_start(self._rev_input, False, False) - #revbox.pack_start(self._btn_rev_browse, False, False, 5)   revbox.pack_start(self._opt_allrev, False, False)   vbox.pack_start(revbox, False, False, 2)   @@ -210,13 +207,6 @@
  self._src_input.set_text(dialog.get_filename())   dialog.destroy()   - def _btn_rev_clicked(self, button): - """ select revision from history dialog """ - import histselect - rev = histselect.select() - if rev is not None: - self._rev_input.set_text(rev) -   def _add_src_to_recent(self, src):   if os.path.exists(src):   src = os.path.abspath(src)