eric6/Debugger/VariablesFilterDialog.py

branch
maintenance
changeset 8273
698ae46f40a4
parent 8176
31965986ecd1
parent 8218
7c09585bd960
equal deleted inserted replaced
8190:fb0ef164f536 8273:698ae46f40a4
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