Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9.2, 1.9.3, and 2.0

sync: rename detailsbutton to optionsbutton

Changeset 7a49c8f3ff03

Parent 951a5052f162

by Steve Borho

Changes to one file · Browse files at 7a49c8f3ff03 Showing diff from parent 951a5052f162 Diff from another changeset...

 
92
93
94
95
 
96
97
98
 
99
100
101
 
188
189
190
191
 
192
193
194
 
261
262
263
264
 
265
266
267
 
92
93
94
 
95
96
97
 
98
99
100
101
 
188
189
190
 
191
192
193
194
 
261
262
263
 
264
265
266
267
@@ -92,10 +92,10 @@
  hbox.addWidget(tb)   self.layout().addLayout(hbox)   - self.detailsbutton = QPushButton(_('Options')) + self.optionsbutton = QPushButton(_('Options'))   self.postpullbutton = QPushButton()   hbox.addWidget(self.postpullbutton) - hbox.addWidget(self.detailsbutton) + hbox.addWidget(self.optionsbutton)   tb.setMaximumHeight(self.postpullbutton.sizeHint().height())   if 'perfarce' in self.repo.extensions():   self.p4pbutton = QPushButton(_('p4pending')) @@ -188,7 +188,7 @@
  self.savebutton.clicked.connect(self.saveclicked)   self.authbutton.clicked.connect(self.authclicked)   self.postpullbutton.clicked.connect(self.postpullclicked) - self.detailsbutton.pressed.connect(self.details) + self.optionsbutton.pressed.connect(self.editOptions)     self.opbuttons = sactions + [self.p4pbutton]   @@ -261,7 +261,7 @@
  'Repository is reporting its config files have changed'   self.reload()   - def details(self): + def editOptions(self):   dlg = OptionsDialog(self.opts, self)   dlg.setWindowFlags(Qt.Sheet)   dlg.setWindowModality(Qt.WindowModal)