eric6/WebBrowser/ClosedTabsManager.py

changeset 8207
d359172d11be
parent 7923
91e843545d9a
child 8218
7c09585bd960
equal deleted inserted replaced
8206:adf11836cfce 8207:d359172d11be
8 """ 8 """
9 9
10 from PyQt5.QtCore import pyqtSignal, QUrl, QObject 10 from PyQt5.QtCore import pyqtSignal, QUrl, QObject
11 11
12 12
13 class ClosedTab(object): 13 class ClosedTab:
14 """ 14 """
15 Class implementing a structure to store data about a closed tab. 15 Class implementing a structure to store data about a closed tab.
16 """ 16 """
17 def __init__(self, url=None, title="", position=-1): 17 def __init__(self, url=None, title="", position=-1):
18 """ 18 """

eric ide

mercurial