2523:139f182b72f6 | 2525:8b507a9a2d40 |
---|---|
4 # | 4 # |
5 | 5 |
6 """ | 6 """ |
7 Module implementing a dialog to select which private data to clear. | 7 Module implementing a dialog to select which private data to clear. |
8 """ | 8 """ |
9 | |
10 from __future__ import unicode_literals # __IGNORE_WARNING__ | |
9 | 11 |
10 from PyQt4.QtGui import QDialog | 12 from PyQt4.QtGui import QDialog |
11 | 13 |
12 from .Ui_HelpClearPrivateDataDialog import Ui_HelpClearPrivateDataDialog | 14 from .Ui_HelpClearPrivateDataDialog import Ui_HelpClearPrivateDataDialog |
13 | 15 |
20 """ | 22 """ |
21 Constructor | 23 Constructor |
22 | 24 |
23 @param parent reference to the parent widget (QWidget) | 25 @param parent reference to the parent widget (QWidget) |
24 """ | 26 """ |
25 super().__init__(parent) | 27 super(HelpClearPrivateDataDialog, self).__init__(parent) |
26 self.setupUi(self) | 28 self.setupUi(self) |
27 | 29 |
28 def getData(self): | 30 def getData(self): |
29 """ | 31 """ |
30 Public method to get the data from the dialog. | 32 Public method to get the data from the dialog. |