7 Module implementing a dialog to enter personal data. |
7 Module implementing a dialog to enter personal data. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtWidgets import QDialog |
10 from PyQt6.QtWidgets import QDialog |
11 |
11 |
|
12 from eric7 import Preferences |
|
13 from eric7.EricGui import EricPixmapCache |
|
14 |
12 from .Ui_PersonalDataDialog import Ui_PersonalDataDialog |
15 from .Ui_PersonalDataDialog import Ui_PersonalDataDialog |
13 |
|
14 from eric7.EricGui import EricPixmapCache |
|
15 from eric7 import Preferences |
|
16 |
16 |
17 |
17 |
18 class PersonalDataDialog(QDialog, Ui_PersonalDataDialog): |
18 class PersonalDataDialog(QDialog, Ui_PersonalDataDialog): |
19 """ |
19 """ |
20 Class implementing a dialog to enter personal data. |
20 Class implementing a dialog to enter personal data. |