628 super().__init__(parent) |
628 super().__init__(parent) |
629 self.setModal(fromEric) |
629 self.setModal(fromEric) |
630 self.setSizeGripEnabled(True) |
630 self.setSizeGripEnabled(True) |
631 |
631 |
632 self.__layout = QVBoxLayout(self) |
632 self.__layout = QVBoxLayout(self) |
633 self.__layout.setMargin(0) |
633 self.__layout.setContentsMargins(0, 0, 0, 0) |
634 self.setLayout(self.__layout) |
634 self.setLayout(self.__layout) |
635 |
635 |
636 self.cw = QRegExpWizardWidget(self, fromEric) |
636 self.cw = QRegExpWizardWidget(self, fromEric) |
637 size = self.cw.size() |
637 size = self.cw.size() |
638 self.__layout.addWidget(self.cw) |
638 self.__layout.addWidget(self.cw) |