QScintilla/Lexers/LexerPascal.py

branch
Py2 comp.
changeset 3515
1b8381afe38f
parent 3178
f25fc1364c88
parent 3462
6d6e7334a787
child 3656
441956d8fce5
--- a/QScintilla/Lexers/LexerPascal.py	Sun Apr 13 15:45:57 2014 +0200
+++ b/QScintilla/Lexers/LexerPascal.py	Tue Apr 15 22:41:08 2014 +0200
@@ -15,7 +15,7 @@
 import Preferences
 
 
-class LexerPascal(QsciLexerPascal, Lexer):
+class LexerPascal(Lexer, QsciLexerPascal):
     """
     Subclass to implement some additional lexer dependant methods.
     """
@@ -25,7 +25,7 @@
         
         @param parent parent widget of this lexer
         """
-        super(LexerPascal, self).__init__(parent)
+        QsciLexerPascal.__init__(self, parent)
         Lexer.__init__(self)
         
         self.commentString = "//"

eric ide

mercurial