QScintilla/Exporters/ExporterBase.py

changeset 1131
7781e396c903
parent 1112
8a7d1b9d18db
child 1509
c0b5e693b0eb
equal deleted inserted replaced
1130:3e9f0330f833 1131:7781e396c903
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.

eric ide

mercurial