2101 indexIsRole = True |
2101 indexIsRole = True |
2102 |
2102 |
2103 return fieldIndex, searchRx, indexIsRole |
2103 return fieldIndex, searchRx, indexIsRole |
2104 |
2104 |
2105 @pyqtSlot(bool) |
2105 @pyqtSlot(bool) |
2106 def on_stopCheckBox_clicked(self, checked): |
2106 def on_stopCheckBox_clicked(self, _checked): |
2107 """ |
2107 """ |
2108 Private slot called, when the stop on copy/move checkbox is clicked. |
2108 Private slot called, when the stop on copy/move checkbox is clicked. |
2109 |
2109 |
2110 @param checked flag indicating the state of the check box |
2110 @param _checked flag indicating the state of the check box (unused) |
2111 @type bool |
2111 @type bool |
2112 """ |
2112 """ |
2113 self.vcs.getPlugin().setPreferences( |
2113 self.vcs.getPlugin().setPreferences( |
2114 "StopLogOnCopy", self.stopCheckBox.isChecked() |
2114 "StopLogOnCopy", self.stopCheckBox.isChecked() |
2115 ) |
2115 ) |