23 """ |
23 """ |
24 Constructor |
24 Constructor |
25 |
25 |
26 @param parent reference to the parent widget (QWidget) |
26 @param parent reference to the parent widget (QWidget) |
27 """ |
27 """ |
28 super(PersonalDataDialog, self).__init__(parent) |
28 super().__init__(parent) |
29 self.setupUi(self) |
29 self.setupUi(self) |
30 |
30 |
31 self.iconLabel.setPixmap(UI.PixmapCache.getPixmap("pim48")) |
31 self.iconLabel.setPixmap(UI.PixmapCache.getPixmap("pim48")) |
32 |
32 |
33 self.firstnameEdit.setText(Preferences.getWebBrowser("PimFirstName")) |
33 self.firstnameEdit.setText(Preferences.getWebBrowser("PimFirstName")) |