eric6/Debugger/VariableDetailDialog.py

changeset 8218
7c09585bd960
parent 7923
91e843545d9a
equal deleted inserted replaced
8217:385f60c94548 8218:7c09585bd960
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 super(VariableDetailDialog, self).__init__() 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