59 url = self.urlEdit.text() |
59 url = self.urlEdit.text() |
60 |
60 |
61 self.__ok.setEnabled(path != "" and not os.path.isabs(path) and url != "") |
61 self.__ok.setEnabled(path != "" and not os.path.isabs(path) and url != "") |
62 |
62 |
63 @pyqtSlot(str) |
63 @pyqtSlot(str) |
64 def on_pathPicker_textChanged(self, p0): |
64 def on_pathPicker_textChanged(self, _txt): |
65 """ |
65 """ |
66 Private slot to handle the update of the path. |
66 Private slot to handle the update of the path. |
67 |
67 |
68 @param p0 text of the path edit |
68 @param _txt text of the path edit (unused) |
69 @type str |
69 @type str |
70 """ |
70 """ |
71 self.__updateOk() |
71 self.__updateOk() |
72 |
72 |
73 @pyqtSlot(str) |
73 @pyqtSlot(str) |
74 def on_urlEdit_textChanged(self, p0): |
74 def on_urlEdit_textChanged(self, _txt): |
75 """ |
75 """ |
76 Private slot to handle the update of the URL. |
76 Private slot to handle the update of the URL. |
77 |
77 |
78 @param p0 text of the URL edit |
78 @param _txt text of the URL edit (unused) |
79 @type str |
79 @type str |
80 """ |
80 """ |
81 self.__updateOk() |
81 self.__updateOk() |
82 |
82 |
83 @pyqtSlot(str) |
83 @pyqtSlot(str) |