54 @pyqtSlot(str) |
54 @pyqtSlot(str) |
55 def on_newNameEdit_textChanged(self, text): |
55 def on_newNameEdit_textChanged(self, text): |
56 """ |
56 """ |
57 Private slot to react to changes of the new name. |
57 Private slot to react to changes of the new name. |
58 |
58 |
59 @param text text entered into the edit (QString) |
59 @param text text entered into the edit (string) |
60 """ |
60 """ |
61 self.__okButton.setEnabled(text != "") |
61 self.__okButton.setEnabled(text != "") |
62 |
62 |
63 @pyqtSlot(QAbstractButton) |
63 @pyqtSlot(QAbstractButton) |
64 def on_buttonBox_clicked(self, button): |
64 def on_buttonBox_clicked(self, button): |