67 ) |
67 ) |
68 |
68 |
69 self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled(enable) |
69 self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled(enable) |
70 |
70 |
71 @pyqtSlot(str) |
71 @pyqtSlot(str) |
72 def on_worktreePathPicker_textChanged(self, worktree): |
72 def on_worktreePathPicker_textChanged(self, _worktree): |
73 """ |
73 """ |
74 Private slot handling a change of the worktree path. |
74 Private slot handling a change of the worktree path. |
75 |
75 |
76 @param worktree entered worktree path |
76 @param _worktree entered worktree path (unused) |
77 @type str |
77 @type str |
78 """ |
78 """ |
79 self.__updateOK() |
79 self.__updateOK() |
80 |
80 |
81 @pyqtSlot(bool) |
81 @pyqtSlot(bool) |
82 def on_revButton_toggled(self, checked): |
82 def on_revButton_toggled(self, _checked): |
83 """ |
83 """ |
84 Private slot to handle changes of the rev select button. |
84 Private slot to handle changes of the rev select button. |
85 |
85 |
86 @param checked state of the button |
86 @param _checked state of the button (unused) |
87 @type bool |
87 @type bool |
88 """ |
88 """ |
89 self.__updateOK() |
89 self.__updateOK() |
90 |
90 |
91 @pyqtSlot(str) |
91 @pyqtSlot(str) |
92 def on_revEdit_textChanged(self, txt): |
92 def on_revEdit_textChanged(self, _txt): |
93 """ |
93 """ |
94 Private slot to handle changes of the rev edit. |
94 Private slot to handle changes of the rev edit. |
95 |
95 |
96 @param txt text of the edit |
96 @param _txt text of the edit (unused) |
97 @type str |
97 @type str |
98 """ |
98 """ |
99 self.__updateOK() |
99 self.__updateOK() |
100 |
100 |
101 @pyqtSlot(bool) |
101 @pyqtSlot(bool) |
102 def on_tagButton_toggled(self, checked): |
102 def on_tagButton_toggled(self, _checked): |
103 """ |
103 """ |
104 Private slot to handle changes of the Tag select button. |
104 Private slot to handle changes of the Tag select button. |
105 |
105 |
106 @param checked state of the button |
106 @param _checked state of the button (unused) |
107 @type bool |
107 @type bool |
108 """ |
108 """ |
109 self.__updateOK() |
109 self.__updateOK() |
110 |
110 |
111 @pyqtSlot(str) |
111 @pyqtSlot(str) |
112 def on_tagCombo_editTextChanged(self, txt): |
112 def on_tagCombo_editTextChanged(self, _txt): |
113 """ |
113 """ |
114 Private slot to handle changes of the Tag combo. |
114 Private slot to handle changes of the Tag combo. |
115 |
115 |
116 @param txt text of the combo |
116 @param _txt text of the combo (unused) |
117 @type str |
117 @type str |
118 """ |
118 """ |
119 self.__updateOK() |
119 self.__updateOK() |
120 |
120 |
121 @pyqtSlot(bool) |
121 @pyqtSlot(bool) |
122 def on_branchButton_toggled(self, checked): |
122 def on_branchButton_toggled(self, _checked): |
123 """ |
123 """ |
124 Private slot to handle changes of the Branch select button. |
124 Private slot to handle changes of the Branch select button. |
125 |
125 |
126 @param checked state of the button |
126 @param _checked state of the button (unused) |
127 @type bool |
127 @type bool |
128 """ |
128 """ |
129 self.__updateOK() |
129 self.__updateOK() |
130 |
130 |
131 @pyqtSlot(str) |
131 @pyqtSlot(str) |
132 def on_branchCombo_editTextChanged(self, txt): |
132 def on_branchCombo_editTextChanged(self, _txt): |
133 """ |
133 """ |
134 Private slot to handle changes of the Branch combo. |
134 Private slot to handle changes of the Branch combo. |
135 |
135 |
136 @param txt text of the combo |
136 @param _txt text of the combo (unused) |
137 @type str |
137 @type str |
138 """ |
138 """ |
139 self.__updateOK() |
139 self.__updateOK() |
140 |
140 |
141 def getParameters(self): |
141 def getParameters(self): |