forked from qt-creator/qt-creator
Debugger: Allow hex values to be passed for qmlcontext addresses
Change-Id: I327f40f872a2399befdbccf78e5b364ecaf86aee Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
@@ -253,7 +253,7 @@ class Dumper(DumperBase):
|
|||||||
self.typeformats = args.get("typeformats", {})
|
self.typeformats = args.get("typeformats", {})
|
||||||
self.formats = args.get("formats", {})
|
self.formats = args.get("formats", {})
|
||||||
self.watchers = args.get("watchers", {})
|
self.watchers = args.get("watchers", {})
|
||||||
self.qmlcontext = int(args.get("qmlcontext", "0"))
|
self.qmlcontext = int(args.get("qmlcontext", "0"), 0)
|
||||||
self.useDynamicType = int(args.get("dyntype", "0"))
|
self.useDynamicType = int(args.get("dyntype", "0"))
|
||||||
self.useFancy = int(args.get("fancy", "0"))
|
self.useFancy = int(args.get("fancy", "0"))
|
||||||
self.forceQtNamespace = int(args.get("forcens", "0"))
|
self.forceQtNamespace = int(args.get("forcens", "0"))
|
||||||
|
Reference in New Issue
Block a user