Debugger: Remove unused gdbbridge.Dumper.nolocals

Change-Id: Ic24cb5ffb8d1a93372c3661a8b7c91f11fe4e9ad
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
hjk
2013-11-27 18:07:02 +01:00
parent 630e535658
commit 2e8347a8c8
+1 -3
View File
@@ -515,13 +515,11 @@ class Dumper(DumperBase):
self.autoDerefPointers = "autoderef" in options
self.partialUpdate = "partial" in options
self.tooltipOnly = "tooltiponly" in options
self.noLocals = "nolocals" in options
#warn("NAMESPACE: '%s'" % self.qtNamespace())
#warn("VARIABLES: %s" % varList)
#warn("EXPANDED INAMES: %s" % self.expandedINames)
#warn("WATCHERS: %s" % watchers)
#warn("PARTIAL: %s" % self.partialUpdate)
#warn("NO LOCALS: %s" % self.noLocals)
#
# Locals
@@ -548,7 +546,7 @@ class Dumper(DumperBase):
pass
varList = []
if fullUpdateNeeded and not self.tooltipOnly and not self.noLocals:
if fullUpdateNeeded and not self.tooltipOnly:
locals = listOfLocals(varList)
# Take care of the return value of the last function call.