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

synch: refactoring: rename

Changeset 47ecdfbe1fa3

Parent 86267372db3a

by Yuki KODAMA

Changes to one file · Browse files at 47ecdfbe1fa3 Showing diff from parent 86267372db3a Diff from another changeset...

Change 1 of 6 Show Entire File hggtk/​synch.py Stacked
 
99
100
101
102
103
104
 
 
 
105
106
107
 
161
162
163
164
165
 
 
166
167
168
 
171
172
173
174
 
175
176
177
 
210
211
212
213
 
214
215
216
217
 
218
219
220
 
238
239
240
241
 
242
243
244
 
247
248
249
250
 
251
252
253
 
254
255
256
 
99
100
101
 
 
 
102
103
104
105
106
107
 
161
162
163
 
 
164
165
166
167
168
 
171
172
173
 
174
175
176
177
 
210
211
212
 
213
214
215
216
 
217
218
219
220
 
238
239
240
 
241
242
243
244
 
247
248
249
 
250
251
252
 
253
254
255
256
@@ -99,9 +99,9 @@
  ]   for btn in tbuttons:   self.tbar.insert(btn, -1) - vbox = gtk.VBox() - self.add(vbox) - vbox.pack_start(self.tbar, False, False, 2) + basevbox = gtk.VBox() + self.add(basevbox) + basevbox.pack_start(self.tbar, False, False, 2)     # sync target selection buttons   targethbox = gtk.HBox() @@ -161,8 +161,8 @@
  self.expander = expander = gtk.Expander(_('Advanced Options'))   expander.set_expanded(False)   expander.connect_after('activate', self.expanded) - hbox = gtk.HBox() - expander.add(hbox) + opthbox = gtk.HBox() + expander.add(opthbox)     fixedhbox = gtk.HBox()   fixedhbox.pack_start(targethbox, True, True, 2) @@ -171,7 +171,7 @@
  topvbox = gtk.VBox()   topvbox.pack_start(fixedhbox, True, True, 2)   topvbox.pack_start(expander, False, False, 2) - vbox.pack_start(topvbox, False, False, 2) + basevbox.pack_start(topvbox, False, False, 2)     # checkbox options   chkopthbox = gtk.HBox() @@ -210,11 +210,11 @@
  revvbox.pack_start(chkopthbox, False, False, 8)   revvbox.pack_start(reveventbox, False, False, 4)   revvbox.pack_start(cmdeventbox, False, False, 4) - hbox.pack_start(revvbox, True, True, 4) + opthbox.pack_start(revvbox, True, True, 4)     # groupbox for 'Incoming/Outgoing'   frame = gtk.Frame(_('Incoming/Outgoing')) - hbox.pack_start(frame, False, False, 2) + opthbox.pack_start(frame, False, False, 2)     self.showpatch = gtk.CheckButton(_('Show Patches'))   self.newestfirst = gtk.CheckButton(_('Show Newest First')) @@ -238,7 +238,7 @@
  self.textbuffer = self.textview.get_buffer()   self.textbuffer.create_tag('error', weight=pango.WEIGHT_HEAVY,   foreground='#900000') - vbox.pack_start(scrolledwindow, True, True) + basevbox.pack_start(scrolledwindow, True, True)     self.buttonhbox = gtk.HBox()   self.viewpulled = gtk.Button(_('View pulled revisions')) @@ -247,10 +247,10 @@
  self.updatetip.connect('clicked', self._update_to_tip)   self.buttonhbox.pack_start(self.viewpulled, False, False, 2)   self.buttonhbox.pack_start(self.updatetip, False, False, 2) - vbox.pack_start(self.buttonhbox, False, False, 2) + basevbox.pack_start(self.buttonhbox, False, False, 2)     self.stbar = gtklib.StatusBar() - vbox.pack_start(self.stbar, False, False, 2) + basevbox.pack_start(self.stbar, False, False, 2)     self.load_settings()   self.update_pull_setting()