59 Private slot to react upon changes of revisions. |
59 Private slot to react upon changes of revisions. |
60 """ |
60 """ |
61 self.__updateOk() |
61 self.__updateOk() |
62 |
62 |
63 @pyqtSlot(bool) |
63 @pyqtSlot(bool) |
64 def on_userGroup_toggled(self, checked): |
64 def on_userGroup_toggled(self, _checked): |
65 """ |
65 """ |
66 Private slot to handle changes of the user group state. |
66 Private slot to handle changes of the user group state. |
67 |
67 |
68 @param checked flag giving the checked state |
68 @param _checked flag giving the checked state (unused) |
69 @type bool |
69 @type bool |
70 """ |
70 """ |
71 self.__updateOk() |
71 self.__updateOk() |
72 |
72 |
73 @pyqtSlot(bool) |
73 @pyqtSlot(bool) |
74 def on_currentUserCheckBox_toggled(self, checked): |
74 def on_currentUserCheckBox_toggled(self, _checked): |
75 """ |
75 """ |
76 Private slot to handle changes of the current user state. |
76 Private slot to handle changes of the current user state. |
77 |
77 |
78 @param checked flag giving the checked state |
78 @param _checked flag giving the checked state (unused) |
79 @type bool |
79 @type bool |
80 """ |
80 """ |
81 self.__updateOk() |
81 self.__updateOk() |
82 |
82 |
83 @pyqtSlot(str) |
83 @pyqtSlot(str) |
84 def on_userEdit_textChanged(self, txt): |
84 def on_userEdit_textChanged(self, _txt): |
85 """ |
85 """ |
86 Private slot to handle changes of the user name. |
86 Private slot to handle changes of the user name. |
87 |
87 |
88 @param txt text of the edit |
88 @param _txt text of the edit (unused) |
89 @type str |
89 @type str |
90 """ |
90 """ |
91 self.__updateOk() |
91 self.__updateOk() |
92 |
92 |
93 def getData(self): |
93 def getData(self): |