diff -r fc1ae39af8c9 -r 8c1445825e7b eric6/Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py --- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py Thu Mar 04 17:44:41 2021 +0100 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py Thu Mar 04 17:48:09 2021 +0100 @@ -1794,22 +1794,24 @@ if self.__actionMode() == "filter": self.__filterLogs() - @pyqtSlot(str) - def on_branchCombo_activated(self, txt): + @pyqtSlot(int) + def on_branchCombo_activated(self, index): """ Private slot called, when a new branch is selected. - @param txt text of the selected branch (string) + @param index index of the selected entry + @type int """ if self.__actionMode() == "filter": self.__filterLogs() - @pyqtSlot(str) - def on_fieldCombo_activated(self, txt): + @pyqtSlot(int) + def on_fieldCombo_activated(self, index): """ Private slot called, when a new filter field is selected. - @param txt text of the selected field (string) + @param index index of the selected entry + @type int """ if self.__actionMode() == "filter": self.__filterLogs()