24 |
24 |
25 @param parent reference to the parent widget (QWidget) |
25 @param parent reference to the parent widget (QWidget) |
26 """ |
26 """ |
27 super(HelpClearPrivateDataDialog, self).__init__(parent) |
27 super(HelpClearPrivateDataDialog, self).__init__(parent) |
28 self.setupUi(self) |
28 self.setupUi(self) |
|
29 |
|
30 msh = self.minimumSizeHint() |
|
31 self.resize(max(self.width(), msh.width()), msh.height()) |
29 |
32 |
30 def getData(self): |
33 def getData(self): |
31 """ |
34 """ |
32 Public method to get the data from the dialog. |
35 Public method to get the data from the dialog. |
33 |
36 |