Preferences/ConfigurationPages/EditorHighlightingStylesPage.py

changeset 537
72b32daeb8d6
parent 500
c3abc7895a01
child 564
b3d966393ba9
diff -r 6d8d39753c82 -r 72b32daeb8d6 Preferences/ConfigurationPages/EditorHighlightingStylesPage.py
--- a/Preferences/ConfigurationPages/EditorHighlightingStylesPage.py	Mon Aug 30 20:16:34 2010 +0200
+++ b/Preferences/ConfigurationPages/EditorHighlightingStylesPage.py	Tue Aug 31 12:17:02 2010 +0200
@@ -11,11 +11,13 @@
 
 from PyQt4.QtCore import pyqtSlot, QFileInfo
 from PyQt4.QtGui import QPalette, QFileDialog, QColorDialog, QFontDialog, \
-                        QInputDialog, QMessageBox, QFont, QMenu
+                        QInputDialog, QFont, QMenu
 
 from .ConfigurationPageBase import ConfigurationPageBase
 from .Ui_EditorHighlightingStylesPage import Ui_EditorHighlightingStylesPage
 
+from E5Gui import E5MessageBox
+
 from E5XML.XMLUtilities import make_parser
 from E5XML.XMLErrorHandler import XMLErrorHandler, XMLFatalParseError
 from E5XML.XMLEntityResolver import XMLEntityResolver
@@ -388,7 +390,7 @@
             HighlightingStylesWriter(f, lexers).writeXML()
             f.close()
         except IOError as err:
-            QMessageBox.critical(self,
+            E5MessageBox.critical(self,
                 self.trUtf8("Export Highlighting Styles"),
                 self.trUtf8("""<p>The highlighting styles could not be exported"""
                             """ to file <b>{0}</b>.</p><p>Reason: {1}</p>""")\
@@ -418,7 +420,7 @@
             finally:
                 f.close()
         except IOError as err:
-            QMessageBox.critical(self,
+            E5MessageBox.critical(self,
                 self.trUtf8("Import Highlighting Styles"),
                 self.trUtf8("""<p>The highlighting styles could not be read"""
                             """ from file <b>{0}</b>.</p><p>Reason: {1}</p>""")\
@@ -448,7 +450,7 @@
             finally:
                 f.close()
         except IOError as err:
-            QMessageBox.critical(self,
+            E5MessageBox.critical(self,
                 self.trUtf8("Import Highlighting Styles"),
                 self.trUtf8("""<p>The highlighting styles could not be read"""
                             """ from file <b>{0}</b>.</p><p>Reason: {1}</p>""")\
@@ -456,7 +458,7 @@
             )
             return
         except XMLFatalParseError:
-            QMessageBox.critical(self,
+            E5MessageBox.critical(self,
                 self.trUtf8("Import Highlighting Styles"),
                 self.trUtf8("""<p>The highlighting styles file <b>{0}</b>"""
                             """ has invalid contents.</p>""").format(fn))

eric ide

mercurial