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