2953:703452a2876f | 2954:bf0215fe12d1 |
---|---|
19 """ | 19 """ |
20 def __init__(self, urlString, title, parent=None): | 20 def __init__(self, urlString, title, parent=None): |
21 """ | 21 """ |
22 Constructor | 22 Constructor |
23 | 23 |
24 @param urlString feed URL (string) | |
25 @param title feed title (string) | |
24 @param parent reference to the parent widget (QWidget) | 26 @param parent reference to the parent widget (QWidget) |
25 """ | 27 """ |
26 super().__init__(parent) | 28 super().__init__(parent) |
27 self.setupUi(self) | 29 self.setupUi(self) |
28 | 30 |
56 @param txt new feed title (string) | 58 @param txt new feed title (string) |
57 """ | 59 """ |
58 self.__setOkButton() | 60 self.__setOkButton() |
59 | 61 |
60 @pyqtSlot(str) | 62 @pyqtSlot(str) |
61 def on_urlEdit_textChanged(self, p0): | 63 def on_urlEdit_textChanged(self, txt): |
62 """ | 64 """ |
63 Private slot to handle changes of the feed URL. | 65 Private slot to handle changes of the feed URL. |
64 | 66 |
65 @param txt new feed URL (string) | 67 @param txt new feed URL (string) |
66 """ | 68 """ |