diff -r 7f1a56e80124 -r 87f9bce38a44 SqlBrowser/SqlBrowser.py --- a/SqlBrowser/SqlBrowser.py Tue Aug 31 12:36:10 2010 +0200 +++ b/SqlBrowser/SqlBrowser.py Tue Aug 31 13:23:27 2010 +0200 @@ -12,6 +12,7 @@ from PyQt4.QtSql import QSqlError, QSqlDatabase from E5Gui.E5Action import E5Action +from E5Gui import E5MessageBox from .SqlBrowserWidget import SqlBrowserWidget @@ -68,7 +69,7 @@ Private slot to do some actions after the UI has started and the main loop is up. """ for warning in self.__warnings: - QMessageBox.warning(self, + E5MessageBox.warning(self, self.trUtf8("SQL Browser startup problem"), warning) @@ -175,4 +176,4 @@ """ Private slot to show info about Qt. """ - QMessageBox.aboutQt(self, self.trUtf8("SQL Browser")) + QMessageBox.aboutQt(self, self.trUtf8("SQL Browser")) \ No newline at end of file