90 self.__menu.addAction( |
90 self.__menu.addAction( |
91 self.tr("Show Versions"), self.__showVersions) |
91 self.tr("Show Versions"), self.__showVersions) |
92 self.__menu.addSeparator() |
92 self.__menu.addSeparator() |
93 |
93 |
94 self.__menu.addAction( |
94 self.__menu.addAction( |
95 self.tr("QRegExp editor"), self.__startQRegExp) |
95 self.tr("QRegularExpression editor"), |
|
96 self.__startQRegularExpression) |
96 self.__menu.addAction( |
97 self.__menu.addAction( |
97 self.tr("Python re editor"), self.__startPyRe) |
98 self.tr("Python re editor"), self.__startPyRe) |
98 self.__menu.addSeparator() |
99 self.__menu.addSeparator() |
99 |
100 |
100 self.__menu.addAction( |
101 self.__menu.addAction( |
363 """ |
364 """ |
364 Private slot to start the eric6 snapshot dialog. |
365 Private slot to start the eric6 snapshot dialog. |
365 """ |
366 """ |
366 self.__startProc("eric6_snap.py") |
367 self.__startProc("eric6_snap.py") |
367 |
368 |
368 def __startQRegExp(self): |
369 def __startQRegularExpression(self): |
369 """ |
370 """ |
370 Private slot to start the eric6 QRegExp editor dialog. |
371 Private slot to start the eric6 QRegularExpression editor dialog. |
371 """ |
372 """ |
372 self.__startProc("eric6_qregexp.py") |
373 self.__startProc("eric6_qregularexpression.py") |
373 |
374 |
374 def __startPyRe(self): |
375 def __startPyRe(self): |
375 """ |
376 """ |
376 Private slot to start the eric6 Python re editor dialog. |
377 Private slot to start the eric6 Python re editor dialog. |
377 """ |
378 """ |