src/eric7/QScintilla/Exporters/ExporterBase.py

branch
eric7
changeset 10431
64157aeb0312
parent 9913
702ad0ef6b3f
child 10439
21c28b0f9e41
--- a/src/eric7/QScintilla/Exporters/ExporterBase.py	Wed Dec 20 19:28:22 2023 +0100
+++ b/src/eric7/QScintilla/Exporters/ExporterBase.py	Thu Dec 21 12:03:40 2023 +0100
@@ -23,8 +23,10 @@
         """
         Constructor
 
-        @param editor reference to the editor object (QScintilla.Editor.Editor)
-        @param parent parent object of the exporter (QObject)
+        @param editor reference to the editor object
+        @type QScintilla.Editor.Editor
+        @param parent parent object of the exporter
+        @type QObject
         """
         super().__init__(parent)
         self.editor = editor
@@ -33,9 +35,11 @@
         """
         Protected method to get the file name of the export file from the user.
 
-        @param fileFilter the filter string to be used (string). The filter for
-            "All Files (*)" is appended by this method.
-        @return file name entered by the user (string)
+        @param fileFilter filter string to be used. The filter for "All Files (*)"
+            is appended by this method.
+        @type str
+        @return file name entered by the user
+        @rtype str
         """
         fileFilter += ";;"
         fileFilter += QCoreApplication.translate("Exporter", "All Files (*)")

eric ide

mercurial