23 def __init__(self, device, lexers): |
23 def __init__(self, device, lexers): |
24 """ |
24 """ |
25 Constructor |
25 Constructor |
26 |
26 |
27 @param device reference to the I/O device to read from (QIODevice) |
27 @param device reference to the I/O device to read from (QIODevice) |
28 @param lexers list of lexer objects for which to export the styles |
28 @param lexers dictionary of lexer objects for which to import the |
|
29 styles |
29 """ |
30 """ |
30 XMLStreamReaderBase.__init__(self, device) |
31 XMLStreamReaderBase.__init__(self, device) |
31 |
32 |
32 self.lexers = lexers |
33 self.lexers = lexers |
33 |
34 |