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

guess: initially select specified files

Changeset ae63303557b0

Parent eefbeaf50946

by Steve Borho

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

 
28
29
30
31
 
32
33
34
35
 
36
37
38
 
149
150
151
 
152
 
153
154
155
 
365
366
367
368
 
 
28
29
30
 
31
32
33
34
35
36
37
38
39
 
150
151
152
153
154
155
156
157
158
 
368
369
370
 
371
@@ -28,11 +28,12 @@
    matchAccepted = pyqtSignal()   - def __init__(self, root=None, parent=None): + def __init__(self, parent=None, root=None, *pats):   QDialog.__init__(self, parent)     repo = hg.repository(ui.ui(), path=paths.find_root(root))   self.repo = repo + self.pats = pats   self.thread = None     reponame = hglib.get_reponame(repo) @@ -149,7 +150,9 @@
  item = QListWidgetItem(hglib.tounicode(x))   item.orig = x   self.unrevlist.addItem(item) + self.unrevlist.setItemSelected(item, x in self.pats)   self.difftb.clear() + self.pats = []     def findRenames(self):   'User pressed "find renames" button' @@ -365,4 +368,4 @@
  self.match.emit(old, new, '%d%%' % (s*100))    def run(ui, *pats, **opts): - return DetectRenameDialog() + return DetectRenameDialog(None, None, *pats)