36 @pyqtSlot() |
36 @pyqtSlot() |
37 def on_commitsEdit_textChanged(self): |
37 def on_commitsEdit_textChanged(self): |
38 """ |
38 """ |
39 Private slot to react upon changes of commits. |
39 Private slot to react upon changes of commits. |
40 """ |
40 """ |
41 self.buttonBox.button(QDialogButtonBox.Ok).setEnabled( |
41 self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled( |
42 self.commitsEdit.toPlainText() != "") |
42 self.commitsEdit.toPlainText() != "") |
43 |
43 |
44 def getData(self): |
44 def getData(self): |
45 """ |
45 """ |
46 Public method to retrieve the entered data. |
46 Public method to retrieve the entered data. |