diff options
author | Tobias Hunger <[email protected]> | 2010-01-11 10:22:55 +0100 |
---|---|---|
committer | Tobias Hunger <[email protected]> | 2010-01-11 10:26:13 +0100 |
commit | 592e494d1ab10d3ea9fa67542b04b37591449e8e (patch) | |
tree | 444ebde6528d3f9d22f0c51ea86a8a08ff5f125d /src/plugins/debugger/watchhandler.cpp | |
parent | 443a0377b4bb40bb2733cab552119fb292aa27d2 (diff) |
Fix typos
Reviewed-by: thorbjorn
Diffstat (limited to 'src/plugins/debugger/watchhandler.cpp')
-rw-r--r-- | src/plugins/debugger/watchhandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/watchhandler.cpp b/src/plugins/debugger/watchhandler.cpp index 8028695349c..a33bfa3e162 100644 --- a/src/plugins/debugger/watchhandler.cpp +++ b/src/plugins/debugger/watchhandler.cpp @@ -646,7 +646,7 @@ static QString formattedValue(const WatchData &data, int format) reinterpret_cast<void *>(data.value.toULongLong(&ok, 0)); if (!ok || !addr) return data.value; - // FIXME: add a round trip throught the debugger to prevent crashs? + // FIXME: add a round trip through the debugger to prevent crashs? if (format == Latin1StringFormat) return QString::fromLatin1(static_cast<const char *>(addr)); if (format == Local8BitStringFormat) |