36 @param editor reference to the editor containing the source text |
36 @param editor reference to the editor containing the source text |
37 @type Editor |
37 @type Editor |
38 @param populate flag indicating to populate the outline |
38 @param populate flag indicating to populate the outline |
39 @type bool |
39 @type bool |
40 """ |
40 """ |
41 super(EditorOutlineModel, self).__init__(nopopulate=True) |
41 super().__init__(nopopulate=True) |
42 |
42 |
43 self.__editor = editor |
43 self.__editor = editor |
44 |
44 |
45 self.__populated = False |
45 self.__populated = False |
46 |
46 |