src/eric7/WebBrowser/Sync/SyncEncryptionPage.py

branch
eric7
changeset 10436
f6881d10e995
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
--- a/src/eric7/WebBrowser/Sync/SyncEncryptionPage.py	Fri Dec 22 13:57:47 2023 +0100
+++ b/src/eric7/WebBrowser/Sync/SyncEncryptionPage.py	Fri Dec 22 17:24:07 2023 +0100
@@ -25,7 +25,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)
@@ -52,7 +53,8 @@
         """
         Public method returning the ID of the next wizard page.
 
-        @return next wizard page ID (integer)
+        @return next wizard page ID
+        @rtype int
         """
         Preferences.setWebBrowser(
             "SyncEncryptData", self.encryptionGroupBox.isChecked()
@@ -72,7 +74,8 @@
         """
         Public method to check the completeness of the page.
 
-        @return flag indicating completeness (boolean)
+        @return flag indicating completeness
+        @rtype bool
         """
         if self.encryptionGroupBox.isChecked():
             if self.encryptionKeyEdit.text() == "":
@@ -119,7 +122,8 @@
         """
         Private slot to handle changes of the encryption key.
 
-        @param txt content of the edit widget (string)
+        @param txt content of the edit widget
+        @type str
         """
         self.passwordMeter.checkPasswordStrength(txt)
         self.__updateUI()
@@ -129,7 +133,8 @@
         """
         Private slot to handle changes of the encryption key repetition.
 
-        @param txt content of the edit widget (string)
+        @param txt content of the edit widget
+        @type str
         """
         self.__updateUI()
 
@@ -138,7 +143,8 @@
         """
         Private slot to handle changes of the encryption selection.
 
-        @param on state of the group box (boolean)
+        @param on state of the group box
+        @type bool
         """
         self.__updateUI()
 
@@ -147,6 +153,7 @@
         """
         Private slot to handle changes of the re-encryption selection.
 
-        @param on state of the check box (boolean)
+        @param on state of the check box
+        @type bool
         """
         self.__updateUI()

eric ide

mercurial