aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/debugger
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2019-03-25 09:44:40 +0100
committerJoerg Bornemann <joerg.bornemann@qt.io>2019-03-25 08:53:03 +0000
commit3fbd95cee4c2bb59d6eef45df06007fead0121ad (patch)
treea6c7b4fb0b20c1cc376d74a62ebc487dfb296f65 /share/qtcreator/debugger
parent2ab0a43a89d7477393539ad549b91b098d78ee46 (diff)
Debugger: Fix typos in gdbbridge
Change-Id: I33f35353b08fdb26a5b78231dff5bfeb80325d14 Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'share/qtcreator/debugger')
-rw-r--r--share/qtcreator/debugger/gdbbridge.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/share/qtcreator/debugger/gdbbridge.py b/share/qtcreator/debugger/gdbbridge.py
index 980c5fa07e..7819d6d5c8 100644
--- a/share/qtcreator/debugger/gdbbridge.py
+++ b/share/qtcreator/debugger/gdbbridge.py
@@ -88,7 +88,7 @@ class PPCommand(gdb.Command):
PPCommand()
-# Just convienience for 'python print gdb.parse_and_eval(...)'
+# Just convenience for 'python print gdb.parse_and_eval(...)'
class PPPCommand(gdb.Command):
def __init__(self):
super(PPPCommand, self).__init__('ppp', gdb.COMMAND_OBSCURE)
@@ -169,7 +169,7 @@ registerCommand('importPlainDumpers', importPlainDumpers)
-class OutputSafer:
+class OutputSaver:
def __init__(self, d):
self.d = d
@@ -179,7 +179,7 @@ class OutputSafer:
def __exit__(self, exType, exValue, exTraceBack):
if self.d.passExceptions and not exType is None:
- showException('OUTPUTSAFER', exType, exValue, exTraceBack)
+ showException('OUTPUTSAVER', exType, exValue, exTraceBack)
self.d.output = self.savedOutput
else:
self.savedOutput += self.d.output
@@ -1312,7 +1312,7 @@ class Dumper(DumperBase):
frame = gdb.newest_frame()
self.currentCallContext = None
while i < limit and frame:
- with OutputSafer(self):
+ with OutputSaver(self):
name = frame.name()
functionName = '??' if name is None else name
fileName = ''