Helpviewer/PersonalInformationManager/PersonalInformationManager.py

changeset 2403
e3d7a861547c
parent 2302
f29e9405c851
child 2525
8b507a9a2d40
child 3002
6ffc581f00f1
equal deleted inserted replaced
2402:304fcefd3b04 2403:e3d7a861547c
7 Module implementing a personal information manager used to complete form fields. 7 Module implementing a personal information manager used to complete form fields.
8 """ 8 """
9 9
10 from PyQt4.QtCore import Qt, QObject 10 from PyQt4.QtCore import Qt, QObject
11 from PyQt4.QtGui import QDialog, QMenu 11 from PyQt4.QtGui import QDialog, QMenu
12
13 from .PersonalDataDialog import PersonalDataDialog
14 12
15 import Preferences 13 import Preferences
16 import UI.PixmapCache 14 import UI.PixmapCache
17 15
18 16
110 108
111 def showConfigurationDialog(self): 109 def showConfigurationDialog(self):
112 """ 110 """
113 Public method to show the configuration dialog. 111 Public method to show the configuration dialog.
114 """ 112 """
113 from .PersonalDataDialog import PersonalDataDialog
115 dlg = PersonalDataDialog() 114 dlg = PersonalDataDialog()
116 if dlg.exec_() == QDialog.Accepted: 115 if dlg.exec_() == QDialog.Accepted:
117 dlg.storeData() 116 dlg.storeData()
118 self.__loadSettings() 117 self.__loadSettings()
119 118

eric ide

mercurial