src/eric7/WebBrowser/Sync/SyncCheckPage.py

branch
eric7
changeset 10436
f6881d10e995
parent 10069
435cc5875135
child 10439
21c28b0f9e41
--- a/src/eric7/WebBrowser/Sync/SyncCheckPage.py	Fri Dec 22 13:57:47 2023 +0100
+++ b/src/eric7/WebBrowser/Sync/SyncCheckPage.py	Fri Dec 22 17:24:07 2023 +0100
@@ -27,7 +27,8 @@
         """
         Constructor
 
-        @param parent reference to the parent widget (QWidget)
+        @param parent reference to the parent widget
+        @type QWidget
         """
         super().__init__(parent)
         self.setupUi(self)
@@ -120,8 +121,10 @@
         """
         Private slot to update the synchronization status info.
 
-        @param type_ type of synchronization data (string)
-        @param msg synchronization message (string)
+        @param type_ type of synchronization data
+        @type str
+        @param msg synchronization message
+        @type str
         """
         if type_ == "bookmarks":
             self.bookmarkMsgLabel.setText(msg)
@@ -139,11 +142,13 @@
         """
         Private slot to handle a finished synchronization event.
 
-        @param type_ type of the synchronization event (string one
-            of "bookmarks", "history", "passwords", "useragents" or
-            "speeddial")
-        @param status flag indicating success (boolean)
-        @param download flag indicating a download of a file (boolean)
+        @param type_ type of the synchronization event (one of "bookmarks",
+            "history", "passwords", "useragents" or "speeddial")
+        @type str
+        @param status flag indicating success
+        @type bool
+        @param download flag indicating a download of a file
+        @type bool
         """
         if type_ == "bookmarks":
             if status:
@@ -181,7 +186,8 @@
         """
         Private slot to handle general synchronization issues.
 
-        @param message error message (string)
+        @param message error message
+        @type str
         """
         self.syncErrorLabel.show()
         self.syncErrorLabel.setText(

eric ide

mercurial