Helpviewer/History/HistoryMenu.py

changeset 501
5c615a85241a
parent 488
4174c2707dba
child 535
4b00d7336e19
equal deleted inserted replaced
500:c3abc7895a01 501:5c615a85241a
201 201
202 class HistoryMenu(E5ModelMenu): 202 class HistoryMenu(E5ModelMenu):
203 """ 203 """
204 Class implementing the history menu. 204 Class implementing the history menu.
205 205
206 @signal openUrl(const QUrl&, const QString&) emitted to open a URL in the current 206 @signal openUrl(QUrl, str) emitted to open a URL in the current tab
207 tab 207 @signal newUrl(QUrl, str) emitted to open a URL in a new tab
208 @signal newUrl(const QUrl&, const QString&) emitted to open a URL in a new tab
209 """ 208 """
210 openUrl = pyqtSignal(QUrl, str) 209 openUrl = pyqtSignal(QUrl, str)
211 newUrl = pyqtSignal(QUrl, str) 210 newUrl = pyqtSignal(QUrl, str)
212 211
213 def __init__(self, parent = None): 212 def __init__(self, parent = None):

eric ide

mercurial