170 Private slot to refresh the status display. |
170 Private slot to refresh the status display. |
171 """ |
171 """ |
172 self.start(self.__repodir) |
172 self.start(self.__repodir) |
173 |
173 |
174 @pyqtSlot(bool) |
174 @pyqtSlot(bool) |
175 def on_indexCheckBox_toggled(self, checked): |
175 def on_indexCheckBox_toggled(self, _checked): |
176 """ |
176 """ |
177 Private slot handling a change of the index check box. |
177 Private slot handling a change of the index check box. |
178 |
178 |
179 @param checked check state of the check box |
179 @param _checked check state of the check box (unused) |
180 @type bool |
180 @type bool |
181 """ |
181 """ |
182 self.on_refreshButton_clicked() |
182 self.on_refreshButton_clicked() |
183 |
183 |
184 @pyqtSlot(bool) |
184 @pyqtSlot(bool) |
185 def on_recursiveCheckBox_toggled(self, checked): |
185 def on_recursiveCheckBox_toggled(self, _checked): |
186 """ |
186 """ |
187 Private slot handling a change of the recursive check box. |
187 Private slot handling a change of the recursive check box. |
188 |
188 |
189 @param checked check state of the check box |
189 @param _checked check state of the check box (unused) |
190 @type bool |
190 @type bool |
191 """ |
191 """ |
192 self.on_refreshButton_clicked() |
192 self.on_refreshButton_clicked() |