--- a/eric6/Tools/TrayStarter.py Sat Oct 10 16:03:53 2020 +0200 +++ b/eric6/Tools/TrayStarter.py Sun Oct 11 17:54:52 2020 +0200 @@ -92,7 +92,8 @@ self.__menu.addSeparator() self.__menu.addAction( - self.tr("QRegExp editor"), self.__startQRegExp) + self.tr("QRegularExpression editor"), + self.__startQRegularExpression) self.__menu.addAction( self.tr("Python re editor"), self.__startPyRe) self.__menu.addSeparator() @@ -365,11 +366,11 @@ """ self.__startProc("eric6_snap.py") - def __startQRegExp(self): + def __startQRegularExpression(self): """ - Private slot to start the eric6 QRegExp editor dialog. + Private slot to start the eric6 QRegularExpression editor dialog. """ - self.__startProc("eric6_qregexp.py") + self.__startProc("eric6_qregularexpression.py") def __startPyRe(self): """