19 Constructor |
19 Constructor |
20 |
20 |
21 @param manager reference to the download manager (DownloadManager) |
21 @param manager reference to the download manager (DownloadManager) |
22 @param parent reference to the parent object (QObject) |
22 @param parent reference to the parent object (QObject) |
23 """ |
23 """ |
24 QAbstractListModel.__init__(self, parent) |
24 super().__init__(parent) |
25 |
25 |
26 self.__manager = manager |
26 self.__manager = manager |
27 |
27 |
28 def data(self, index, role): |
28 def data(self, index, role): |
29 """ |
29 """ |