Debugger/VariablesFilterDialog.py

changeset 1131
7781e396c903
parent 1112
8a7d1b9d18db
child 1509
c0b5e693b0eb
equal deleted inserted replaced
1130:3e9f0330f833 1131:7781e396c903
28 28
29 @param parent parent widget of this dialog (QWidget) 29 @param parent parent widget of this dialog (QWidget)
30 @param name name of this dialog (string) 30 @param name name of this dialog (string)
31 @param modal flag to indicate a modal dialog (boolean) 31 @param modal flag to indicate a modal dialog (boolean)
32 """ 32 """
33 QDialog.__init__(self, parent) 33 super().__init__(parent)
34 if name: 34 if name:
35 self.setObjectName(name) 35 self.setObjectName(name)
36 self.setModal(modal) 36 self.setModal(modal)
37 self.setupUi(self) 37 self.setupUi(self)
38 38

eric ide

mercurial