10691:d1a603a70f83 | 10692:9becf9ca115c |
---|---|
31 availability of closed tabs | 31 availability of closed tabs |
32 """ | 32 """ |
33 | 33 |
34 closedTabAvailable = pyqtSignal(bool) | 34 closedTabAvailable = pyqtSignal(bool) |
35 | 35 |
36 def __init__(self, parent=None): | 36 def __init__(self): |
37 """ | 37 """ |
38 Constructor | 38 Constructor |
39 | |
40 @param parent reference to the parent object | |
41 @type QObject | |
42 """ | 39 """ |
43 super().__init__() | 40 super().__init__() |
44 | 41 |
45 self.__closedTabs = [] | 42 self.__closedTabs = [] |
46 | 43 |