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