eric6/QScintilla/Exporters/ExporterBase.py

changeset 8218
7c09585bd960
parent 7923
91e843545d9a
equal deleted inserted replaced
8217:385f60c94548 8218:7c09585bd960
23 Constructor 23 Constructor
24 24
25 @param editor reference to the editor object (QScintilla.Editor.Editor) 25 @param editor reference to the editor object (QScintilla.Editor.Editor)
26 @param parent parent object of the exporter (QObject) 26 @param parent parent object of the exporter (QObject)
27 """ 27 """
28 super(ExporterBase, self).__init__(parent) 28 super().__init__(parent)
29 self.editor = editor 29 self.editor = editor
30 30
31 def _getFileName(self, fileFilter): 31 def _getFileName(self, fileFilter):
32 """ 32 """
33 Protected method to get the file name of the export file from the user. 33 Protected method to get the file name of the export file from the user.

eric ide

mercurial