diff -r 6d8d39753c82 -r 72b32daeb8d6 Preferences/ConfigurationDialog.py --- a/Preferences/ConfigurationDialog.py Mon Aug 30 20:16:34 2010 +0200 +++ b/Preferences/ConfigurationDialog.py Tue Aug 31 12:17:02 2010 +0200 @@ -14,6 +14,7 @@ from PyQt4.QtGui import * from E5Gui.E5Application import e5App +from E5Gui import E5MessageBox import QScintilla.Lexers @@ -421,7 +422,7 @@ mod = getattr(mod, comp) return mod except ImportError: - QMessageBox.critical(None, + E5MessageBox.critical(self, self.trUtf8("Configuration Page Error"), self.trUtf8("""<p>The configuration page <b>{0}</b>""" """ could not be loaded.</p>""").format(name)) @@ -671,4 +672,4 @@ self.cw.setPreferences() Preferences.saveResetLayout() Preferences.syncPreferences() - self.close() + self.close() \ No newline at end of file