Network/IRC/IrcIdentitiesEditDialog.py

changeset 2960
9453efa25fd5
parent 2302
f29e9405c851
child 2992
dbdf27746da5
--- a/Network/IRC/IrcIdentitiesEditDialog.py	Sun Sep 29 12:04:35 2013 +0200
+++ b/Network/IRC/IrcIdentitiesEditDialog.py	Sun Sep 29 14:12:38 2013 +0200
@@ -94,6 +94,8 @@
     def on_identitiesCombo_currentIndexChanged(self, identity):
         """
         Private slot to handle the selection of an identity.
+        
+        @param identity selected identity (string)
         """
         if identity == IrcIdentity.DefaultIdentityDisplay:
             identity = IrcIdentity.DefaultIdentityName
@@ -343,7 +345,8 @@
     
     def __updateNicknameButtons(self):
         """
-        Private slot to update the nick name buttons except the up and down buttons.
+        Private slot to update the nick name buttons except the up and
+        down buttons.
         """
         self.nicknameDeleteButton.setEnabled(
             len(self.nicknamesList.selectedItems()) != 0)
@@ -354,6 +357,8 @@
     def on_nicknameEdit_textEdited(self, nick):
         """
         Private slot handling a change of the nick name.
+        
+        @param nick new nick name (string)
         """
         sel = self.nicknamesList.selectedItems()
         if sel:

eric ide

mercurial