29 """ |
29 """ |
30 Constructor |
30 Constructor |
31 |
31 |
32 @param parent reference to the parent widget (QWidget) |
32 @param parent reference to the parent widget (QWidget) |
33 """ |
33 """ |
34 QDialog.__init__(self, parent) |
34 super().__init__(parent) |
35 self.setupUi(self) |
35 self.setupUi(self) |
36 |
36 |
37 self.clearButton.setIcon(UI.PixmapCache.getIcon("clearLeft.png")) |
37 self.clearButton.setIcon(UI.PixmapCache.getIcon("clearLeft.png")) |
38 |
38 |
39 self.__showPasswordsText = self.trUtf8("Show Passwords") |
39 self.__showPasswordsText = self.trUtf8("Show Passwords") |