Helpviewer/HelpWindow.py

changeset 1693
9bb872e26a33
parent 1680
28e57079dab5
child 1694
648466a9451b
--- a/Helpviewer/HelpWindow.py	Sun Mar 04 13:04:47 2012 +0100
+++ b/Helpviewer/HelpWindow.py	Sun Mar 04 18:20:13 2012 +0100
@@ -1640,22 +1640,6 @@
         """
         QWhatsThis.enterWhatsThisMode()
         
-    def __showHistoryMenu(self):
-        """
-        Private slot called in order to show the history menu.
-        """
-        self.historyMenu.clear()
-        self.historyMenu.addAction(self.clearHistoryAct)
-        self.clearHistoryAct.setData(-1)
-        self.historyMenu.addSeparator()
-        idx = 0
-        for hist in self.mHistory:
-            act = self.historyMenu.addAction(
-                Utilities.compactPath(hist, self.maxMenuFilePathLen))
-            act.setData(idx)
-            idx += 1
-            act.setIcon(HelpWindow.__getWebIcon(QUrl(hist)))
-        
     def __titleChanged(self, browser, title):
         """
         Private slot called to handle a change of s browser's title.

eric ide

mercurial