aboutsummaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorhjk <hjk@theqtcompany.com>2016-04-05 13:27:24 +0200
committerhjk <hjk@theqtcompany.com>2016-04-11 09:35:07 +0000
commite73a9c1b0df9372156791aedc89658bb1d5a6fb7 (patch)
treebaf752d830e2f5f8264a4a914bb728a40db0b1fe /share
parent9bc60e0b9dc9864145015f5cbfa3e323ed0d409d (diff)
Debugger: Always sort local variables alphabetically.
It was there for GDB at a time, but never for the other backends. Fix the GDB regression and make the sorting consistent across backends. Task-number: QTCREATORBUG-15296 Change-Id: If728c65f0c8ca4a8378c7cf5e53f1dadbfb72b29 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
Diffstat (limited to 'share')
-rw-r--r--share/qtcreator/debugger/gdbbridge.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/share/qtcreator/debugger/gdbbridge.py b/share/qtcreator/debugger/gdbbridge.py
index 90c33a1061..02029d700b 100644
--- a/share/qtcreator/debugger/gdbbridge.py
+++ b/share/qtcreator/debugger/gdbbridge.py
@@ -435,7 +435,6 @@ class Dumper(DumperBase):
# Don't bother. It's only supplementary information anyway.
pass
- locals.sort(key = lambda item: item.name)
for item in locals:
value = self.downcast(item.value) if self.useDynamicType else item.value
with OutputSafer(self):