35 |
35 |
36 @param other reference to the object to compare against (ClosedTab) |
36 @param other reference to the object to compare against (ClosedTab) |
37 @return flag indicating equality of the tabs (boolean) |
37 @return flag indicating equality of the tabs (boolean) |
38 """ |
38 """ |
39 return self.url == other.url and \ |
39 return self.url == other.url and \ |
40 self.title == other.title and \ |
40 self.title == other.title and \ |
41 self.position == other.position |
41 self.position == other.position |
42 |
42 |
43 |
43 |
44 class ClosedTabsManager(QObject): |
44 class ClosedTabsManager(QObject): |
45 """ |
45 """ |
46 Class implementing a manager for closed tabs. |
46 Class implementing a manager for closed tabs. |