104 self.exitAct.setStatusTip(self.trUtf8('Quit the SQL browser')) |
104 self.exitAct.setStatusTip(self.trUtf8('Quit the SQL browser')) |
105 self.exitAct.setWhatsThis(self.trUtf8( |
105 self.exitAct.setWhatsThis(self.trUtf8( |
106 """<b>Quit</b>""" |
106 """<b>Quit</b>""" |
107 """<p>Quit the SQL browser.</p>""" |
107 """<p>Quit the SQL browser.</p>""" |
108 )) |
108 )) |
109 self.connect(self.exitAct, SIGNAL('triggered()'), |
109 self.exitAct.triggered.connect(qApp.closeAllWindows) |
110 qApp, SLOT('closeAllWindows()')) |
|
111 |
110 |
112 self.aboutAct = E5Action(self.trUtf8('About'), |
111 self.aboutAct = E5Action(self.trUtf8('About'), |
113 self.trUtf8('&About'), |
112 self.trUtf8('&About'), |
114 0, 0, self, 'sql_help_about') |
113 0, 0, self, 'sql_help_about') |
115 self.aboutAct.setStatusTip(self.trUtf8('Display information about this software')) |
114 self.aboutAct.setStatusTip(self.trUtf8('Display information about this software')) |