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 HelpViewer to HelpDialog

Changeset 5373a80ed375

Parent 23fc73b0a0b2

by Adrian Buehlmann

Changes to 2 files · Browse files at 5373a80ed375 Showing diff from parent 23fc73b0a0b2 Diff from another changeset...

 
24
25
26
27
 
28
29
30
 
24
25
26
 
27
28
29
30
@@ -24,7 +24,7 @@
   from docutils.core import publish_string   -class HelpViewer(QtGui.QDialog, HgDialogMixin): +class HelpDialog(QtGui.QDialog, HgDialogMixin):   """hgview simple help viewer"""   _uifile = 'helpviewer.ui'   def __init__(self, repo, parent=None):
 
29
30
31
32
 
33
34
35
 
516
517
518
519
 
520
521
522
 
29
30
31
 
32
33
34
35
 
516
517
518
 
519
520
521
522
@@ -29,7 +29,7 @@
 from tortoisehg.hgqt.manifestdialog import ManifestDialog  from tortoisehg.hgqt.dialogmixin import HgDialogMixin  from tortoisehg.hgqt.quickbar import FindInGraphlogQuickBar -from tortoisehg.hgqt.helpviewer import HelpViewer +from tortoisehg.hgqt.helpviewer import HelpDialog    from tortoisehg.util import paths   @@ -516,7 +516,7 @@
  QtGui.QMessageBox.about(self, "About %s" % modname, msg)     def on_help(self, *args): - w = HelpViewer(self.repo, self) + w = HelpDialog(self.repo, self)   w.show()   w.raise_()   w.activateWindow()