eric6/Tools/TrayStarter.py

changeset 7775
4a1db75550bd
parent 7761
ed2c67d20328
child 7781
607a6098cb44
equal deleted inserted replaced
7774:9eed155411f0 7775:4a1db75550bd
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 """

eric ide

mercurial