QScintilla/Lexers/LexerMatlab.py

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

eric ide

mercurial