RefactoringRope/GetterSetterDialog.py

branch
eric7
changeset 413
a4cba20ad7ab
parent 412
6fa5892b9097
child 426
7592a1c052e8
equal deleted inserted replaced
412:6fa5892b9097 413:a4cba20ad7ab
85 85
86 self.__okButton.setEnabled(enable) 86 self.__okButton.setEnabled(enable)
87 self.__previewButton.setEnabled(enable) 87 self.__previewButton.setEnabled(enable)
88 88
89 @pyqtSlot(str) 89 @pyqtSlot(str)
90 def on_getterEdit_textChanged(self, text): 90 def on_getterEdit_textChanged(self, text): # noqa: U100
91 """ 91 """
92 Private slot to react to changes of the getter method. 92 Private slot to react to changes of the getter method.
93 93
94 @param text text entered into the edit 94 @param text text entered into the edit
95 @type str 95 @type str
96 """ 96 """
97 self.__updateUI() 97 self.__updateUI()
98 98
99 @pyqtSlot(str) 99 @pyqtSlot(str)
100 def on_setterEdit_textChanged(self, text): 100 def on_setterEdit_textChanged(self, text): # noqa: U100
101 """ 101 """
102 Private slot to react to changes of the setter method. 102 Private slot to react to changes of the setter method.
103 103
104 @param text text entered into the edit 104 @param text text entered into the edit
105 @type str 105 @type str

eric ide

mercurial