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

commit: wfile must be a string

Some lexers want to split the filename we provide, so we cannot pass
in a QString.

Changeset ce812a5c3f18

Parent c5d94d24eff7

by Steve Borho

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

 
188
189
190
 
191
192
193
 
188
189
190
191
192
193
194
@@ -188,6 +188,7 @@
  'Status widget is displaying a new file'   if not (wfile and contents):   return + wfile = unicode(wfile)   self._apis = QsciAPIs(self.msgte.lexer())   tokens = set()   for wfile in self.stwidget.getChecked():