src/eric7/WebBrowser/Feeds/FeedEditDialog.py

branch
eric7
changeset 10436
f6881d10e995
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
diff -r c712d09cc839 -r f6881d10e995 src/eric7/WebBrowser/Feeds/FeedEditDialog.py
--- a/src/eric7/WebBrowser/Feeds/FeedEditDialog.py	Fri Dec 22 13:57:47 2023 +0100
+++ b/src/eric7/WebBrowser/Feeds/FeedEditDialog.py	Fri Dec 22 17:24:07 2023 +0100
@@ -22,9 +22,12 @@
         """
         Constructor
 
-        @param urlString feed URL (string)
-        @param title feed title (string)
-        @param parent reference to the parent widget (QWidget)
+        @param urlString feed URL
+        @type str
+        @param title feed title
+        @type str
+        @param parent reference to the parent widget
+        @type QWidget
         """
         super().__init__(parent)
         self.setupUi(self)
@@ -59,7 +62,8 @@
         """
         Private slot to handle changes of the feed title.
 
-        @param txt new feed title (string)
+        @param txt new feed title
+        @type str
         """
         self.__setOkButton()
 
@@ -68,7 +72,8 @@
         """
         Private slot to handle changes of the feed URL.
 
-        @param txt new feed URL (string)
+        @param txt new feed URL
+        @type str
         """
         self.__setOkButton()
 
@@ -77,6 +82,6 @@
         Public method to get the entered feed data.
 
         @return tuple of two strings giving the feed URL and feed title
-            (string, string)
+        @rtype tuple of (str, str)
         """
         return (self.urlEdit.text(), self.titleEdit.text())

eric ide

mercurial