648 super().__init__(parent) |
648 super().__init__(parent) |
649 self.setModal(fromEric) |
649 self.setModal(fromEric) |
650 self.setSizeGripEnabled(True) |
650 self.setSizeGripEnabled(True) |
651 |
651 |
652 self.__layout = QVBoxLayout(self) |
652 self.__layout = QVBoxLayout(self) |
653 self.__layout.setMargin(0) |
653 self.__layout.setContentsMargins(0, 0, 0, 0) |
654 self.setLayout(self.__layout) |
654 self.setLayout(self.__layout) |
655 |
655 |
656 self.cw = PyRegExpWizardWidget(self, fromEric) |
656 self.cw = PyRegExpWizardWidget(self, fromEric) |
657 size = self.cw.size() |
657 size = self.cw.size() |
658 self.__layout.addWidget(self.cw) |
658 self.__layout.addWidget(self.cw) |