22 |
22 |
23 def __init__(self, doc, whitespace=True): |
23 def __init__(self, doc, whitespace=True): |
24 """ |
24 """ |
25 Constructor |
25 Constructor |
26 |
26 |
27 @param doc reference to the text document (QTextDocument) |
27 @param doc reference to the text document |
|
28 @type QTextDocument |
28 @param whitespace flag indicating to highlight whitespace |
29 @param whitespace flag indicating to highlight whitespace |
29 at the end of a line (boolean) |
30 at the end of a line |
|
31 @type bool |
30 """ |
32 """ |
31 self.whitespace = whitespace |
33 self.whitespace = whitespace |
32 |
34 |
33 super().__init__(doc) |
35 super().__init__(doc) |
34 |
36 |