200 self.signaturesList.selectedItems()[0].text(0) |
200 self.signaturesList.selectedItems()[0].text(0) |
201 .split(":")[0].strip() |
201 .split(":")[0].strip() |
202 ) |
202 ) |
203 self.vcs.getExtensionObject("gpg").hgGpgVerifySignatures(rev) |
203 self.vcs.getExtensionObject("gpg").hgGpgVerifySignatures(rev) |
204 |
204 |
205 @pyqtSlot(str) |
205 @pyqtSlot(int) |
206 def on_categoryCombo_activated(self, txt): |
206 def on_categoryCombo_activated(self, index): |
207 """ |
207 """ |
208 Private slot called, when a new filter category is selected. |
208 Private slot called, when a new filter category is selected. |
209 |
209 |
210 @param txt text of the selected category (string) |
210 @param index index of the selected entry |
|
211 @type int |
211 """ |
212 """ |
212 self.__filterSignatures() |
213 self.__filterSignatures() |
213 |
214 |
214 @pyqtSlot(str) |
215 @pyqtSlot(str) |
215 def on_rxEdit_textChanged(self, txt): |
216 def on_rxEdit_textChanged(self, txt): |