Debugger/VariableDetailDialog.py

changeset 1131
7781e396c903
parent 1112
8a7d1b9d18db
child 1509
c0b5e693b0eb
equal deleted inserted replaced
1130:3e9f0330f833 1131:7781e396c903
26 26
27 @param var the variables name (string) 27 @param var the variables name (string)
28 @param vtype the variables type (string) 28 @param vtype the variables type (string)
29 @param value the variables value (string) 29 @param value the variables value (string)
30 """ 30 """
31 QDialog.__init__(self) 31 super().__init__()
32 self.setupUi(self) 32 self.setupUi(self)
33 33
34 # set the different fields 34 # set the different fields
35 self.eName.setText(var) 35 self.eName.setText(var)
36 self.eType.setText(vtype) 36 self.eType.setText(vtype)

eric ide

mercurial