eric6/Debugger/VariablesFilterDialog.py

changeset 8218
7c09585bd960
parent 8143
2c730d5fd177
child 8273
698ae46f40a4
equal deleted inserted replaced
8217:385f60c94548 8218:7c09585bd960
29 29
30 @param parent parent widget of this dialog (QWidget) 30 @param parent parent widget of this dialog (QWidget)
31 @param name name of this dialog (string) 31 @param name name of this dialog (string)
32 @param modal flag to indicate a modal dialog (boolean) 32 @param modal flag to indicate a modal dialog (boolean)
33 """ 33 """
34 super(VariablesFilterDialog, self).__init__(parent) 34 super().__init__(parent)
35 if name: 35 if name:
36 self.setObjectName(name) 36 self.setObjectName(name)
37 self.setModal(modal) 37 self.setModal(modal)
38 self.setupUi(self) 38 self.setupUi(self)
39 39

eric ide

mercurial