24 Constructor |
24 Constructor |
25 |
25 |
26 @param editor reference to the editor object (QScintilla.Editor.Editor) |
26 @param editor reference to the editor object (QScintilla.Editor.Editor) |
27 @param parent parent object of the exporter (QObject) |
27 @param parent parent object of the exporter (QObject) |
28 """ |
28 """ |
29 QObject.__init__(self, parent) |
29 super().__init__(parent) |
30 self.editor = editor |
30 self.editor = editor |
31 |
31 |
32 def _getFileName(self, filter): |
32 def _getFileName(self, filter): |
33 """ |
33 """ |
34 Protected method to get the file name of the export file from the user. |
34 Protected method to get the file name of the export file from the user. |