debugger: remove infoTargetNecessary

Was only used for gdb < 7.0, and is not necessary on Mac.

Change-Id: I9992d7aad52833f1e40d97395147bf1d2d546cf4
Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
This commit is contained in:
hjk
2011-11-03 12:40:50 +01:00
committed by hjk
parent c2eb453228
commit 76e02578cb
6 changed files with 6 additions and 54 deletions

View File

@@ -194,15 +194,6 @@ QByteArray LocalPlainGdbAdapter::execFilePath() const
.absoluteFilePath().toLocal8Bit();
}
bool LocalPlainGdbAdapter::infoTargetNecessary() const
{
#ifdef Q_OS_LINUX
return true;
#else
return false;
#endif
}
QByteArray LocalPlainGdbAdapter::toLocalEncoding(const QString &s) const
{
return s.toLocal8Bit();