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 """ |