summaryrefslogtreecommitdiffstats
path: root/languages
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-12-14 02:41:51 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-12-14 02:41:51 +0000
commit5ddbd55e6ef0a50c318af360e0ecfab12bff0c85 (patch)
treee62ded06d148a68e36a9e38aa22371c9f914dd07 /languages
parent114a878c64ce6f8223cfd22d76a20eb16d177e5e (diff)
downloadtdevelop-5ddbd55e6ef0a50c318af360e0ecfab12bff0c85.tar.gz
tdevelop-5ddbd55e6ef0a50c318af360e0ecfab12bff0c85.zip
* Fixed gcc4.4 compilation issues
* Repaired malfunctioning debug configuration dialog that prevented execution of gdb git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1062175 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'languages')
-rw-r--r--languages/cpp/debugger/debuggerconfigwidget.cpp14
1 files changed, 1 insertions, 13 deletions
diff --git a/languages/cpp/debugger/debuggerconfigwidget.cpp b/languages/cpp/debugger/debuggerconfigwidget.cpp
index 93e52e64..11de247f 100644
--- a/languages/cpp/debugger/debuggerconfigwidget.cpp
+++ b/languages/cpp/debugger/debuggerconfigwidget.cpp
@@ -37,19 +37,7 @@ DebuggerConfigWidget::DebuggerConfigWidget(DebuggerPart* part, QWidget *parent,
QString shell = DomUtil::readEntry(dom, "/kdevdebugger/general/dbgshell","no_value");
if( shell == QString("no_value") )
{
- QFileInfo info( part->project()->buildDirectory() + "/libtool" );
- if( info.exists() ) {
- shell = "libtool";
- } else {
- // Try one directory up.
- info.setFile( part->project()->buildDirectory() + "/../libtool" );
- if( info.exists() ) {
- shell = "../libtool";
- } else {
- // Give up.
- shell = QString::null;
- }
- }
+ shell = QString::null;
}
debuggingShell_edit->setURL( shell );