diff -r 94fc661a54a2 -r 703452a2876f Helpviewer/AdBlock/AdBlockDialog.py --- a/Helpviewer/AdBlock/AdBlockDialog.py Sat Sep 28 17:40:42 2013 +0200 +++ b/Helpviewer/AdBlock/AdBlockDialog.py Sat Sep 28 19:06:25 2013 +0200 @@ -25,6 +25,8 @@ def __init__(self, parent=None): """ Constructor + + @param parent reference to the parent object (QWidget) """ super().__init__(parent) self.setupUi(self) @@ -227,7 +229,7 @@ def __switchSubscriptionEnabled(self): """ - Private slot to switch the enabled state of the selected subscription + Private slot to switch the enabled state of the selected subscription. """ newState = not self.__currentSubscription.isEnabled() self.__setSubscriptionEnabled(self.__currentSubscription, newState)