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

fileview: rename ll2 to hbox

Changeset b506b194ae38

Parent 6722cbf6b567

by Steve Borho

Changes to one file · Browse files at b506b194ae38 Showing diff from parent 6722cbf6b567 Diff from another changeset...

 
87
88
89
90
91
92
93
 
 
 
 
94
95
96
 
97
98
99
100
 
101
102
103
 
87
88
89
 
 
 
 
90
91
92
93
94
95
 
96
97
98
99
 
100
101
102
103
@@ -87,17 +87,17 @@
  framelayout.addLayout(self.topLayout)   framelayout.addLayout(l, 1)   - ll2 = QHBoxLayout() - ll2.setContentsMargins(0, 0, 0, 0) - ll2.setSpacing(0) - l.addLayout(ll2) + hbox = QHBoxLayout() + hbox.setContentsMargins(0, 0, 0, 0) + hbox.setSpacing(0) + l.addLayout(hbox)     self.blk = blockmatcher.BlockList(self) - ll2.addWidget(self.blk) + hbox.addWidget(self.blk)   self.blk.setVisible(False)     self._stacked = QStackedWidget() - ll2.addWidget(self._stacked, 1) + hbox.addWidget(self._stacked, 1)     self.sci = qscilib.Scintilla(self)   self.blk.linkScrollBar(self.sci.verticalScrollBar())