QScintilla/Lexers/LexerFortran77.py

changeset 6874
5a3a39442711
parent 6645
ad476851d7e0
equal deleted inserted replaced
6873:47804e8cde27 6874:5a3a39442711
27 """ 27 """
28 QsciLexerFortran77.__init__(self, parent) 28 QsciLexerFortran77.__init__(self, parent)
29 Lexer.__init__(self) 29 Lexer.__init__(self)
30 30
31 self.commentString = "c " 31 self.commentString = "c "
32
33 self.keywordSetDescriptions = [
34 self.tr("Primary keywords and identifiers"),
35 self.tr("Intrinsic functions"),
36 self.tr("Extended and user defined functions"),
37 ]
32 38
33 def initProperties(self): 39 def initProperties(self):
34 """ 40 """
35 Public slot to initialize the properties. 41 Public slot to initialize the properties.
36 """ 42 """

eric ide

mercurial