summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/stackframe.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/debugger/stackframe.cpp')
-rw-r--r--src/plugins/debugger/stackframe.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/debugger/stackframe.cpp b/src/plugins/debugger/stackframe.cpp
index 6e755d8837..a92ea661d4 100644
--- a/src/plugins/debugger/stackframe.cpp
+++ b/src/plugins/debugger/stackframe.cpp
@@ -93,9 +93,9 @@ StackFrame StackFrame::parseFrame(const GdbMi &frameMi, const DebuggerRunParamet
{
StackFrame frame;
frame.level = frameMi["level"].data();
- frame.function = frameMi["function"].toUtf8();
- frame.module = frameMi["module"].toUtf8();
- frame.file = QFile::decodeName(frameMi["file"].data());
+ frame.function = frameMi["function"].data();
+ frame.module = frameMi["module"].data();
+ frame.file = frameMi["file"].data();
frame.line = frameMi["line"].toInt();
frame.address = frameMi["address"].toAddress();
frame.context = frameMi["context"].data();