269 def __navigationMenuActionTriggered(self, act): |
269 def __navigationMenuActionTriggered(self, act): |
270 """ |
270 """ |
271 Private slot to go to the selected page. |
271 Private slot to go to the selected page. |
272 |
272 |
273 @param act reference to the action selected in the navigation menu |
273 @param act reference to the action selected in the navigation menu |
274 (QAction) |
274 @type QAction |
275 """ |
275 """ |
276 historyItem = act.data() |
276 historyItem = act.data() |
277 if historyItem is not None: |
277 if historyItem is not None: |
278 history = self.__mw.currentBrowser().history() |
278 history = self.__mw.currentBrowser().history() |
279 history.goToItem(historyItem) |
279 history.goToItem(historyItem) |