diff -r fc1ae39af8c9 -r 8c1445825e7b eric6/Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py --- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py Thu Mar 04 17:44:41 2021 +0100 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py Thu Mar 04 17:48:09 2021 +0100 @@ -93,12 +93,13 @@ if index > -1: self.bookmarkCombo.setCurrentIndex(index) - @pyqtSlot(str) - def on_nameCombo_activated(self, txt): + @pyqtSlot(int) + def on_nameCombo_activated(self, index): """ Private slot to handle changes of the selected bookmark name. - @param txt selected combo entry (string) + @param index index of the selected entry + @type int """ self.__updateOK() self.__updateBookmarksCombo()