Debugger/VariableDetailDialog.py

branch
Py2 comp.
changeset 2525
8b507a9a2d40
parent 2302
f29e9405c851
child 3145
a9de05d4a22f
equal deleted inserted replaced
2523:139f182b72f6 2525:8b507a9a2d40
4 # 4 #
5 5
6 """ 6 """
7 Module implementing the variable detail dialog. 7 Module implementing the variable detail dialog.
8 """ 8 """
9
10 from __future__ import unicode_literals # __IGNORE_WARNING__
9 11
10 from PyQt4.QtGui import QDialog 12 from PyQt4.QtGui import QDialog
11 13
12 from .Ui_VariableDetailDialog import Ui_VariableDetailDialog 14 from .Ui_VariableDetailDialog import Ui_VariableDetailDialog
13 15
26 28
27 @param var the variables name (string) 29 @param var the variables name (string)
28 @param vtype the variables type (string) 30 @param vtype the variables type (string)
29 @param value the variables value (string) 31 @param value the variables value (string)
30 """ 32 """
31 super().__init__() 33 super(VariableDetailDialog, self).__init__()
32 self.setupUi(self) 34 self.setupUi(self)
33 35
34 # set the different fields 36 # set the different fields
35 self.eName.setText(var) 37 self.eName.setText(var)
36 self.eType.setText(vtype) 38 self.eType.setText(vtype)

eric ide

mercurial