24 """ |
24 """ |
25 Constructor |
25 Constructor |
26 |
26 |
27 @param refactoring reference to the main refactoring object |
27 @param refactoring reference to the main refactoring object |
28 (Refactoring) |
28 (Refactoring) |
29 @param title title of the dialog (string or QString) |
29 @param title title of the dialog (string) |
30 @param parent reference to the parent widget (QWidget) |
30 @param parent reference to the parent widget (QWidget) |
31 """ |
31 """ |
32 QDialog.__init__(self, parent) |
32 QDialog.__init__(self, parent) |
33 self.setAttribute(Qt.WA_DeleteOnClose) |
33 self.setAttribute(Qt.WA_DeleteOnClose) |
34 self.setWindowTitle(title) |
34 self.setWindowTitle(title) |