21 """ |
21 """ |
22 def __init__(self, relPath, parent=None): |
22 def __init__(self, relPath, parent=None): |
23 """ |
23 """ |
24 Constructor |
24 Constructor |
25 |
25 |
26 @param relPath initial package path relative to the project root (string) |
26 @param relPath initial package path relative to the project root |
|
27 (string) |
|
28 @param parent reference to the parent widget (QWidget) |
27 """ |
29 """ |
28 super(NewPythonPackageDialog, self).__init__(parent) |
30 super(NewPythonPackageDialog, self).__init__(parent) |
29 self.setupUi(self) |
31 self.setupUi(self) |
30 |
32 |
31 self.okButton = self.buttonBox.button(QDialogButtonBox.Ok) |
33 self.okButton = self.buttonBox.button(QDialogButtonBox.Ok) |