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

repowidget: rename self.horizontalLayout to self.hbox

Changeset afeb05135c32

Parent 1b07a7efa06f

by Adrian Buehlmann

Changes to one file · Browse files at afeb05135c32 Showing diff from parent 1b07a7efa06f Diff from another changeset...

 
224
225
226
227
228
229
 
 
 
230
231
232
 
311
312
313
314
 
315
316
317
 
224
225
226
 
 
 
227
228
229
230
231
232
 
311
312
313
 
314
315
316
317
@@ -224,9 +224,9 @@
  def setupUi(self):   SP = QtGui.QSizePolicy   - self.horizontalLayout = QtGui.QHBoxLayout(self) - self.horizontalLayout.setSpacing(0) - self.horizontalLayout.setMargin(0) + self.hbox = QtGui.QHBoxLayout(self) + self.hbox.setSpacing(0) + self.hbox.setMargin(0)     self.revisions_splitter = QtGui.QSplitter(self)   self.revisions_splitter.setOrientation(QtCore.Qt.Vertical) @@ -311,7 +311,7 @@
    self.verticalLayout.addWidget(self.message_splitter)   self.verticalLayout_2.addWidget(self.filelist_splitter) - self.horizontalLayout.addWidget(self.revisions_splitter) + self.hbox.addWidget(self.revisions_splitter)     def maybeClose(self):   for w in self._quickbars: