QScintilla/Lexers/LexerPostScript.py

changeset 3462
6d6e7334a787
parent 3160
209a07d7e401
child 3515
1b8381afe38f
diff -r ea12ebbbb61b -r 6d6e7334a787 QScintilla/Lexers/LexerPostScript.py
--- a/QScintilla/Lexers/LexerPostScript.py	Tue Apr 01 19:22:33 2014 +0200
+++ b/QScintilla/Lexers/LexerPostScript.py	Tue Apr 01 19:37:13 2014 +0200
@@ -13,7 +13,7 @@
 import Preferences
 
 
-class LexerPostScript(QsciLexerPostScript, Lexer):
+class LexerPostScript(Lexer, QsciLexerPostScript):
     """
     Subclass to implement some additional lexer dependant methods.
     """
@@ -23,7 +23,7 @@
         
         @param parent parent widget of this lexer
         """
-        super().__init__(parent)
+        QsciLexerPostScript.__init__(self, parent)
         Lexer.__init__(self)
         
         self.commentString = "%"

eric ide

mercurial