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

rename hgrepomodel.py to repomodel.py

Changeset e3cbef47cdee

Parent 1589a682176b

by Adrian Buehlmann

Changes to 5 files · Browse files at e3cbef47cdee Showing diff from parent 1589a682176b Diff from another changeset...

 
32
33
34
35
 
36
37
38
 
32
33
34
 
35
36
37
38
@@ -32,7 +32,7 @@
   from tortoisehg.hgqt import icon as geticon  from tortoisehg.hgqt.dialogmixin import HgDialogMixin -from tortoisehg.hgqt.hgrepomodel import FileRevModel +from tortoisehg.hgqt.repomodel import FileRevModel  from tortoisehg.hgqt.blockmatcher import BlockList, BlockMatch  from tortoisehg.hgqt.lexers import get_lexer  from tortoisehg.hgqt.quickbar import FindInGraphlogQuickBar
 
31
32
33
34
 
35
36
37
 
31
32
33
 
34
35
36
37
@@ -31,7 +31,7 @@
   from tortoisehg.hgqt import icon as geticon  from tortoisehg.hgqt.dialogmixin import HgDialogMixin -from tortoisehg.hgqt.hgrepomodel import ManifestModel +from tortoisehg.hgqt.repomodel import ManifestModel  from tortoisehg.hgqt.lexers import get_lexer    connect = QtCore.QObject.connect
 
467
468
469
470
 
471
472
473
 
467
468
469
 
470
471
472
473
@@ -467,7 +467,7 @@
 if __name__ == "__main__":   from mercurial import ui, hg   from optparse import OptionParser - from hgrepomodel import FileRevModel, HgRepoListModel + from repomodel import FileRevModel, HgRepoListModel   p = OptionParser()   p.add_option('-R', '--root', default='.',   dest='root',
Show Entire File tortoisehg/​hgqt/​repomodel.py Stacked
renamed from tortoisehg/hgqt/hgrepomodel.py
(No changes)
 
24
25
26
27
 
28
29
30
 
24
25
26
 
27
28
29
30
@@ -24,7 +24,7 @@
 from tortoisehg.hgqt.decorators import timeit    from tortoisehg.hgqt import icon as geticon -from tortoisehg.hgqt.hgrepomodel import HgRepoListModel, HgFileListModel +from tortoisehg.hgqt.repomodel import HgRepoListModel, HgFileListModel  from tortoisehg.hgqt.hgfiledialog import FileViewer, FileDiffViewer  from tortoisehg.hgqt.hgmanifestdialog import ManifestViewer  from tortoisehg.hgqt.dialogmixin import HgDialogMixin