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

stable grep: trim trailing white space

Changeset d4b81116e4f9

Parent c96ce323e9b1

by Steve Borho

Changes to one file · Browse files at d4b81116e4f9 Showing diff from parent c96ce323e9b1 Diff from another changeset...

 
31
32
33
34
 
35
36
37
 
39
40
41
42
 
43
44
45
 
79
80
81
82
 
83
84
85
86
 
87
88
89
 
31
32
33
 
34
35
36
37
 
39
40
41
 
42
43
44
45
 
79
80
81
 
82
83
84
85
 
86
87
88
89
@@ -31,7 +31,7 @@
    self.thread = None   self.setWindowIcon(qtlib.geticon('view-filter')) - +   mainvbox = QVBoxLayout()   mainvbox.setSpacing(6)   self.setLayout(mainvbox) @@ -39,7 +39,7 @@
  hbox = QHBoxLayout()   hbox.setMargin(2)   le = QLineEdit() - if hasattr(le, 'setPlaceholderText'): # Qt >= 4.7 + if hasattr(le, 'setPlaceholderText'): # Qt >= 4.7   le.setPlaceholderText('### regular expression search pattern ###')   else:   lbl = QLabel(_('Regexp:')) @@ -79,11 +79,11 @@
  'Exclusion patterns are applied after inclusion patterns.')   ihelpstr = _('Comma separated list of inclusion file patterns. '   'By default, the entire repository is searched.') - if hasattr(incle, 'setPlaceholderText'): # Qt >= 4.7 + if hasattr(incle, 'setPlaceholderText'): # Qt >= 4.7   incle.setPlaceholderText(u' '.join([u'###', ihelpstr, u'###']))   else:   incle.setToolTip(ihelpstr) - if hasattr(excle, 'setPlaceholderText'): # Qt >= 4.7 + if hasattr(excle, 'setPlaceholderText'): # Qt >= 4.7   excle.setPlaceholderText(u' '.join([u'###', ehelpstr, u'###']))   else:   excle.setToolTip(ehelpstr)