diff -r 0a02c433f52d -r 5883ce99ee12 SqlBrowser/SqlBrowser.py --- a/SqlBrowser/SqlBrowser.py Fri Nov 01 15:48:48 2013 +0100 +++ b/SqlBrowser/SqlBrowser.py Sun Nov 03 15:58:22 2013 +0100 @@ -102,11 +102,11 @@ self.trUtf8('Add &Connection...'), 0, 0, self, 'sql_file_add_connection') self.addConnectionAct.setStatusTip(self.trUtf8( - 'Open a dialog to add a new database connection')) + 'Open a dialog to add a new database connection')) self.addConnectionAct.setWhatsThis(self.trUtf8( - """<b>Add Connection</b>""" - """<p>This opens a dialog to add a new database""" - """ connection.</p>""" + """<b>Add Connection</b>""" + """<p>This opens a dialog to add a new database""" + """ connection.</p>""" )) self.addConnectionAct.triggered[()].connect( self.__browser.addConnectionByDialog) @@ -120,8 +120,8 @@ 0, self, 'sql_file_quit') self.exitAct.setStatusTip(self.trUtf8('Quit the SQL browser')) self.exitAct.setWhatsThis(self.trUtf8( - """<b>Quit</b>""" - """<p>Quit the SQL browser.</p>""" + """<b>Quit</b>""" + """<p>Quit the SQL browser.</p>""" )) self.exitAct.triggered[()].connect(qApp.closeAllWindows) @@ -132,8 +132,8 @@ self.aboutAct.setStatusTip(self.trUtf8( 'Display information about this software')) self.aboutAct.setWhatsThis(self.trUtf8( - """<b>About</b>""" - """<p>Display some information about this software.</p>""" + """<b>About</b>""" + """<p>Display some information about this software.</p>""" )) self.aboutAct.triggered[()].connect(self.__about) self.__actions.append(self.aboutAct) @@ -145,8 +145,8 @@ self.aboutQtAct.setStatusTip( self.trUtf8('Display information about the Qt toolkit')) self.aboutQtAct.setWhatsThis(self.trUtf8( - """<b>About Qt</b>""" - """<p>Display some information about the Qt toolkit.</p>""" + """<b>About Qt</b>""" + """<p>Display some information about the Qt toolkit.</p>""" )) self.aboutQtAct.triggered[()].connect(self.__aboutQt) self.__actions.append(self.aboutQtAct)