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