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

grep: remove defunc combo box

Changeset 09f295240942

Parent 4a26ab89573a

by Steve Borho

Changes to one file · Browse files at 09f295240942 Showing diff from parent 4a26ab89573a Diff from another changeset...

 
49
50
51
52
53
54
55
56
57
 
 
 
58
59
60
 
89
90
91
92
93
94
95
96
97
 
49
50
51
 
 
 
 
 
52
53
54
55
56
57
58
 
87
88
89
 
 
 
90
91
92
@@ -49,12 +49,10 @@
  lbl = QLabel(_('Regexp:'))   le = QLineEdit()   lbl.setBuddy(le) - - cb = QComboBox() - cb.addItems([_('Working Copy'), - _('Parent Revision'), - _('All History')])   chk = QCheckBox(_('Ignore case')) + hbox.addWidget(lbl) + hbox.addWidget(le, 1) + hbox.addWidget(chk)     incle = QLineEdit()   excle = QLineEdit() @@ -89,9 +87,6 @@
  expand.toggled.connect(expandtoggled)   expandtoggled(False)   - hbox.addWidget(lbl) - hbox.addWidget(le, 1) - hbox.addWidget(chk)   hbox.addWidget(expand)   layout.addLayout(hbox)   frame.setLayout(grid)