Debugger/VariablesViewer.py

changeset 2400
c1726b754f96
parent 2302
f29e9405c851
child 2511
a0ff5574e43a
equal deleted inserted replaced
2397:671d0d55e5c8 2400:c1726b754f96
14 from E5Gui.E5Application import e5App 14 from E5Gui.E5Application import e5App
15 15
16 from DebugClients.Python3.DebugConfig import ConfigVarTypeStrings 16 from DebugClients.Python3.DebugConfig import ConfigVarTypeStrings
17 17
18 from .Config import ConfigVarTypeDispStrings 18 from .Config import ConfigVarTypeDispStrings
19 from .VariableDetailDialog import VariableDetailDialog
20 19
21 import Preferences 20 import Preferences
22 21
23 22
24 class VariableItem(QTreeWidgetItem): 23 class VariableItem(QTreeWidgetItem):
630 nlist.insert(0, '{0}.'.format(pname)) 629 nlist.insert(0, '{0}.'.format(pname))
631 par = par.parent() 630 par = par.parent()
632 631
633 name = ''.join(nlist) 632 name = ''.join(nlist)
634 # now show the dialog 633 # now show the dialog
634 from .VariableDetailDialog import VariableDetailDialog
635 dlg = VariableDetailDialog(name, vtype, val) 635 dlg = VariableDetailDialog(name, vtype, val)
636 dlg.exec_() 636 dlg.exec_()
637 637
638 def __buildTreePath(self, itm): 638 def __buildTreePath(self, itm):
639 """ 639 """

eric ide

mercurial