aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordt <qtc-committer@nokia.com>2010-01-14 17:26:18 +0100
committerdt <qtc-committer@nokia.com>2010-01-14 17:26:18 +0100
commit1da2e9e8d8d1a4ce6ed894b0154112692a0d8de1 (patch)
treec52317cd483a1e77ab9f37e0e87c15d98f3d9c49
parent2520d0c5d57e194a69918e70d8f24866966e1419 (diff)
Fix for wrong version in gdb substitute for qt path
Reviewed-By: thorbjorn
-rw-r--r--src/plugins/debugger/gdb/gdbengine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp
index 2aa844bd65..eaa4c6fd9b 100644
--- a/src/plugins/debugger/gdb/gdbengine.cpp
+++ b/src/plugins/debugger/gdb/gdbengine.cpp
@@ -4554,7 +4554,7 @@ void GdbEngine::handleInferiorPrepared()
postCommand(_("set substitute-path %1 %2")
.arg(qtBuildPath).arg(qtInstallPath));
#elif defined(Q_OS_UNIX) && !defined (Q_OS_MAC)
- qtBuildPath = _("/var/tmp/qt-x11-src-4.6.0");
+ qtBuildPath = _("/var/tmp/qt-x11-src-4.6.1");
postCommand(_("set substitute-path %1 %2")
.arg(qtBuildPath).arg(qtInstallPath));
#endif