76 """<b>QInputDialog Wizard</b>""" |
76 """<b>QInputDialog 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 QInputDialog. The generated code is inserted""" |
78 """ needed to create a QInputDialog. The generated code is inserted""" |
79 """ at the current cursor position.</p>""" |
79 """ at the current cursor position.</p>""" |
80 )) |
80 )) |
81 self.connect(self.action, SIGNAL('triggered()'), 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 """ |