2523:139f182b72f6 | 2525:8b507a9a2d40 |
---|---|
4 # | 4 # |
5 | 5 |
6 """ | 6 """ |
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 | |
10 from __future__ import unicode_literals # __IGNORE_WARNING__ | |
9 | 11 |
10 from PyQt4.QtCore import Qt, QObject | 12 from PyQt4.QtCore import Qt, QObject |
11 from PyQt4.QtGui import QDialog, QMenu | 13 from PyQt4.QtGui import QDialog, QMenu |
12 | 14 |
13 import Preferences | 15 import Preferences |
41 """ | 43 """ |
42 Constructor | 44 Constructor |
43 | 45 |
44 @param parent reference to the parent object (QObject) | 46 @param parent reference to the parent object (QObject) |
45 """ | 47 """ |
46 super().__init__(parent) | 48 super(PersonalInformationManager, self).__init__(parent) |
47 | 49 |
48 self.__loaded = False | 50 self.__loaded = False |
49 self.__allInfo = {} | 51 self.__allInfo = {} |
50 self.__infoMatches = {} | 52 self.__infoMatches = {} |
51 self.__translations = {} | 53 self.__translations = {} |