Helpviewer/Feeds/FeedEditDialog.py

branch
Py2 comp.
changeset 3057
10516539f238
parent 2525
8b507a9a2d40
parent 2954
bf0215fe12d1
child 3145
a9de05d4a22f
equal deleted inserted replaced
3056:9986ec0e559a 3057:10516539f238
21 """ 21 """
22 def __init__(self, urlString, title, parent=None): 22 def __init__(self, urlString, title, parent=None):
23 """ 23 """
24 Constructor 24 Constructor
25 25
26 @param urlString feed URL (string)
27 @param title feed title (string)
26 @param parent reference to the parent widget (QWidget) 28 @param parent reference to the parent widget (QWidget)
27 """ 29 """
28 super(FeedEditDialog, self).__init__(parent) 30 super(FeedEditDialog, self).__init__(parent)
29 self.setupUi(self) 31 self.setupUi(self)
30 32
58 @param txt new feed title (string) 60 @param txt new feed title (string)
59 """ 61 """
60 self.__setOkButton() 62 self.__setOkButton()
61 63
62 @pyqtSlot(str) 64 @pyqtSlot(str)
63 def on_urlEdit_textChanged(self, p0): 65 def on_urlEdit_textChanged(self, txt):
64 """ 66 """
65 Private slot to handle changes of the feed URL. 67 Private slot to handle changes of the feed URL.
66 68
67 @param txt new feed URL (string) 69 @param txt new feed URL (string)
68 """ 70 """

eric ide

mercurial