QScintilla/Lexers/LexerTCL.py

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

eric ide

mercurial