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

rename class ManifestViewer to ManifestDialog

Changeset 4416068da1c9

Parent baaaa7c1872d

by Adrian Buehlmann

Changes to 4 files · Browse files at 4416068da1c9 Showing diff from parent baaaa7c1872d Diff from another changeset...

 
39
40
41
42
 
43
44
45
 
39
40
41
 
42
43
44
45
@@ -39,7 +39,7 @@
   from tortoisehg.hgqt import icon as geticon  from tortoisehg.hgqt.filedialogs import FileLogDialog, FileDiffDialog -from tortoisehg.hgqt.manifestdialog import ManifestViewer +from tortoisehg.hgqt.manifestdialog import ManifestDialog  from tortoisehg.hgqt.quickbar import QuickBar  from tortoisehg.hgqt.lexers import get_lexer  from tortoisehg.hgqt.blockmatcher import BlockList
 
40
41
42
43
 
44
45
46
 
150
151
152
153
 
154
155
156
 
40
41
42
 
43
44
45
46
 
150
151
152
 
153
154
155
156
@@ -40,7 +40,7 @@
 nullvariant = QtCore.QVariant()     -class ManifestViewer(QtGui.QMainWindow, HgDialogMixin): +class ManifestDialog(QtGui.QMainWindow, HgDialogMixin):   """   Qt4 dialog to display all files of a repo at a given revision   """ @@ -150,7 +150,7 @@
  repo = hg.repository(u, options.repo)   app = QtGui.QApplication([])   - view = ManifestViewer(repo, int(rev)) + view = ManifestDialog(repo, int(rev))   view.show()   sys.exit(app.exec_())  
 
35
36
37
38
 
39
40
41
 
35
36
37
 
38
39
40
41
@@ -35,7 +35,7 @@
 from tortoisehg.hgqt.decorators import timeit  from tortoisehg.hgqt.config import HgConfig  from tortoisehg.hgqt import icon as geticon -from tortoisehg.hgqt.manifestdialog import ManifestViewer +from tortoisehg.hgqt.manifestdialog import ManifestDialog  from tortoisehg.hgqt.quickbar import QuickBar    class GotoQuickBar(QuickBar):
 
26
27
28
29
 
30
31
32
 
426
427
428
429
 
430
431
432
 
26
27
28
 
29
30
31
32
 
426
427
428
 
429
430
431
432
@@ -26,7 +26,7 @@
 from tortoisehg.hgqt import icon as geticon  from tortoisehg.hgqt.repomodel import HgRepoListModel, HgFileListModel  from tortoisehg.hgqt.filedialogs import FileLogDialog, FileDiffDialog -from tortoisehg.hgqt.manifestdialog import ManifestViewer +from tortoisehg.hgqt.manifestdialog import ManifestDialog  from tortoisehg.hgqt.dialogmixin import HgDialogMixin  from tortoisehg.hgqt.quickbar import FindInGraphlogQuickBar  from tortoisehg.hgqt.helpviewer import HelpViewer @@ -426,7 +426,7 @@
  """   if rev is None:   rev = self.tableView_revisions.current_rev - self._manifestdlg = ManifestViewer(self.repo, rev) + self._manifestdlg = ManifestDialog(self.repo, rev)   self._manifestdlg.show()     def file_displayed(self, filename):