2523:139f182b72f6 | 2525:8b507a9a2d40 |
---|---|
4 # | 4 # |
5 | 5 |
6 """ | 6 """ |
7 Module implementing the Security configuration page. | 7 Module implementing the Security configuration page. |
8 """ | 8 """ |
9 | |
10 from __future__ import unicode_literals # __IGNORE_WARNING__ | |
9 | 11 |
10 from PyQt4.QtCore import pyqtSlot | 12 from PyQt4.QtCore import pyqtSlot |
11 from PyQt4.QtGui import QDialog | 13 from PyQt4.QtGui import QDialog |
12 from PyQt4.QtWebKit import QWebSettings | 14 from PyQt4.QtWebKit import QWebSettings |
13 | 15 |
25 """ | 27 """ |
26 Constructor | 28 Constructor |
27 | 29 |
28 @param configDialog reference to the configuration dialog (ConfigurationDialog) | 30 @param configDialog reference to the configuration dialog (ConfigurationDialog) |
29 """ | 31 """ |
30 super().__init__() | 32 super(SecurityPage, self).__init__() |
31 self.setupUi(self) | 33 self.setupUi(self) |
32 self.setObjectName("SecurityPage") | 34 self.setObjectName("SecurityPage") |
33 | 35 |
34 self.__configDlg = configDialog | 36 self.__configDlg = configDialog |
35 | 37 |