eric6/Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py

changeset 7502
426f64d419f0
parent 7493
1696e91a5393
child 7533
88261c96484b
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py	Sun Apr 05 11:54:41 2020 +0200
+++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py	Sun Apr 05 12:00:11 2020 +0200
@@ -37,7 +37,8 @@
         @type Hg
         @param path path of the repository to serve
         @type str
-        @param parent reference to the parent widget (QWidget)
+        @param parent reference to the parent widget
+        @type QWidget
         """
         super(HgServeDialog, self).__init__(parent)
         
@@ -183,7 +184,8 @@
         """
         Protected slot implementing a close event handler.
         
-        @param e close event (QCloseEvent)
+        @param e close event
+        @type QCloseEvent
         """
         self.__stopServer()
     
@@ -191,8 +193,10 @@
         """
         Private slot connected to the finished signal.
         
-        @param exitCode exit code of the process (integer)
-        @param exitStatus exit status of the process (QProcess.ExitStatus)
+        @param exitCode exit code of the process
+        @type int
+        @param exitStatus exit status of the process
+        @type QProcess.ExitStatus
         """
         self.__stopServer()
     
@@ -222,8 +226,10 @@
         """
         Private method to append text to the end.
         
-        @param txt text to insert (string)
-        @param error flag indicating to insert error text (boolean)
+        @param txt text to insert
+        @type str
+        @param error flag indicating to insert error text
+        @type bool
         """
         tc = self.__log.textCursor()
         tc.movePosition(QTextCursor.End)

eric ide

mercurial