Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.1, 2.1.1, and 2.1.2

fileview: use qtlib.editfiles

Changeset 550c168f02f1

Parent 8f0bd6a7a3ea

by Steve Borho

Changes to one file · Browse files at 550c168f02f1 Showing diff from parent 8f0bd6a7a3ea Diff from another changeset...

 
27
28
29
30
 
31
32
33
 
401
402
403
404
 
405
406
407
 
27
28
29
 
30
31
32
33
 
401
402
403
 
404
405
406
407
@@ -27,7 +27,7 @@
 from tortoisehg.util import hglib, patchctx  from tortoisehg.hgqt.i18n import _  from tortoisehg.hgqt import annotate, qscilib, qtlib, blockmatcher, lexers -from tortoisehg.hgqt import visdiff, wctxactions +from tortoisehg.hgqt import visdiff    from PyQt4.QtCore import *  from PyQt4.QtGui import * @@ -401,7 +401,7 @@
  base = visdiff.snapshot(self.repo, [path], self.repo[rev])[0]   files = [os.path.join(base, path)]   pattern = hglib.fromunicode(self._lastSearch[0]) - wctxactions.edit(self, self.repo.ui, self.repo, files, line, pattern) + qtlib.editfiles(self.repo, files, line, pattern, self)     @pyqtSlot(unicode, bool, bool, bool)   def find(self, exp, icase=True, wrap=False, forward=True):