21 Constructor |
21 Constructor |
22 |
22 |
23 @param variables list of template variable names (list of strings) |
23 @param variables list of template variable names (list of strings) |
24 @param parent parent widget of this dialog (QWidget) |
24 @param parent parent widget of this dialog (QWidget) |
25 """ |
25 """ |
26 QDialog.__init__(self, parent) |
26 super().__init__(parent) |
27 |
27 |
28 self.TemplateMultipleVariablesDialogLayout = QVBoxLayout(self) |
28 self.TemplateMultipleVariablesDialogLayout = QVBoxLayout(self) |
29 self.TemplateMultipleVariablesDialogLayout.setMargin(6) |
29 self.TemplateMultipleVariablesDialogLayout.setMargin(6) |
30 self.TemplateMultipleVariablesDialogLayout.setSpacing(6) |
30 self.TemplateMultipleVariablesDialogLayout.setSpacing(6) |
31 self.TemplateMultipleVariablesDialogLayout.setObjectName( |
31 self.TemplateMultipleVariablesDialogLayout.setObjectName( |