src/eric7/Plugins/VcsPlugins/vcsMercurial/HgBundleDialog.py

branch
eric7
changeset 10690
fab36645aa7d
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
equal deleted inserted replaced
10689:3ede487187f2 10690:fab36645aa7d
69 enabled = self.bookmarkCombo.currentText() != "" 69 enabled = self.bookmarkCombo.currentText() != ""
70 70
71 self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled(enabled) 71 self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled(enabled)
72 72
73 @pyqtSlot(bool) 73 @pyqtSlot(bool)
74 def on_multipleButton_toggled(self, checked): 74 def on_multipleButton_toggled(self, _checked):
75 """ 75 """
76 Private slot to handle changes of the Multiple select button. 76 Private slot to handle changes of the Multiple select button.
77 77
78 @param checked state of the button 78 @param _checked state of the button (unused)
79 @type bool 79 @type bool
80 """ 80 """
81 self.__updateOK() 81 self.__updateOK()
82 82
83 @pyqtSlot(bool) 83 @pyqtSlot(bool)
84 def on_tagButton_toggled(self, checked): 84 def on_tagButton_toggled(self, _checked):
85 """ 85 """
86 Private slot to handle changes of the Tag select button. 86 Private slot to handle changes of the Tag select button.
87 87
88 @param checked state of the button 88 @param _checked state of the button (unused)
89 @type bool 89 @type bool
90 """ 90 """
91 self.__updateOK() 91 self.__updateOK()
92 92
93 @pyqtSlot(bool) 93 @pyqtSlot(bool)
94 def on_branchButton_toggled(self, checked): 94 def on_branchButton_toggled(self, _checked):
95 """ 95 """
96 Private slot to handle changes of the Branch select button. 96 Private slot to handle changes of the Branch select button.
97 97
98 @param checked state of the button 98 @param _checked state of the button (unused)
99 @type bool 99 @type bool
100 """ 100 """
101 self.__updateOK() 101 self.__updateOK()
102 102
103 @pyqtSlot(bool) 103 @pyqtSlot(bool)
104 def on_bookmarkButton_toggled(self, checked): 104 def on_bookmarkButton_toggled(self, _checked):
105 """ 105 """
106 Private slot to handle changes of the Bookmark select button. 106 Private slot to handle changes of the Bookmark select button.
107 107
108 @param checked state of the button 108 @param _checked state of the button (unused)
109 @type bool 109 @type bool
110 """ 110 """
111 self.__updateOK() 111 self.__updateOK()
112 112
113 @pyqtSlot() 113 @pyqtSlot()
116 Private slot to handle changes of the Multiple edit. 116 Private slot to handle changes of the Multiple edit.
117 """ 117 """
118 self.__updateOK() 118 self.__updateOK()
119 119
120 @pyqtSlot(str) 120 @pyqtSlot(str)
121 def on_tagCombo_editTextChanged(self, txt): 121 def on_tagCombo_editTextChanged(self, _txt):
122 """ 122 """
123 Private slot to handle changes of the Tag combo. 123 Private slot to handle changes of the Tag combo.
124 124
125 @param txt text of the combo 125 @param _txt text of the combo (unused)
126 @type str 126 @type str
127 """ 127 """
128 self.__updateOK() 128 self.__updateOK()
129 129
130 @pyqtSlot(str) 130 @pyqtSlot(str)
131 def on_branchCombo_editTextChanged(self, txt): 131 def on_branchCombo_editTextChanged(self, _txt):
132 """ 132 """
133 Private slot to handle changes of the Branch combo. 133 Private slot to handle changes of the Branch combo.
134 134
135 @param txt text of the combo 135 @param _txt text of the combo (unused)
136 @type str 136 @type str
137 """ 137 """
138 self.__updateOK() 138 self.__updateOK()
139 139
140 @pyqtSlot(str) 140 @pyqtSlot(str)
141 def on_bookmarkCombo_editTextChanged(self, txt): 141 def on_bookmarkCombo_editTextChanged(self, _txt):
142 """ 142 """
143 Private slot to handle changes of the Bookmark combo. 143 Private slot to handle changes of the Bookmark combo.
144 144
145 @param txt text of the combo 145 @param _txt text of the combo (unused)
146 @type str 146 @type str
147 """ 147 """
148 self.__updateOK() 148 self.__updateOK()
149 149
150 def getParameters(self): 150 def getParameters(self):

eric ide

mercurial