From 524604fe35dd9a470b4aadffcbb605afe3660079 Mon Sep 17 00:00:00 2001
From: hjk <qtc-committer@nokia.com>
Date: Tue, 29 Sep 2009 15:00:58 +0200
Subject: [PATCH] debugger: always try to set the location marker early

Gives a smoother impression.
---
 src/plugins/debugger/gdb/gdbengine.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp
index fe9be58357d..8d87ed9d0d5 100644
--- a/src/plugins/debugger/gdb/gdbengine.cpp
+++ b/src/plugins/debugger/gdb/gdbengine.cpp
@@ -1286,10 +1286,10 @@ void GdbEngine::handleStop2(const GdbMi &data)
         }
     }
 
-    // FIXME: Hack, remove as soon as we get real stack traces.
-    if (m_gdbAdapter->isTrkAdapter()) {
+    // Quick shot
+    if (fullName.isValid()) {
         StackFrame f;
-        f.file = QString::fromLocal8Bit(fullName.data());
+        f.file = QFile::decodeName(fullName.data());
         f.line = frame.findChild("line").data().toInt();
         f.address = _(frame.findChild("addr").data());
         gotoLocation(f, true);
-- 
GitLab