76 """<b>QRegularExpression Wizard</b>""" |
76 """<b>QRegularExpression Wizard</b>""" |
77 """<p>This wizard opens a dialog for entering all the parameters""" |
77 """<p>This wizard opens a dialog for entering all the parameters""" |
78 """ needed to create a QRegularExpression string. The generated""" |
78 """ needed to create a QRegularExpression string. The generated""" |
79 """ code is inserted at the current cursor position.</p>""" |
79 """ code is inserted at the current cursor position.</p>""" |
80 )) |
80 )) |
81 self.action.triggered[()].connect(self.__handle) |
81 self.action.triggered.connect(self.__handle) |
82 |
82 |
83 self.__ui.addE5Actions([self.action], 'wizards') |
83 self.__ui.addE5Actions([self.action], 'wizards') |
84 |
84 |
85 def __initMenu(self): |
85 def __initMenu(self): |
86 """ |
86 """ |