Qt Options Page: Remove gdb debugging helper status from tooltip

Listening all debugging helpers there is overkill, and one can see
their status conveniently anyway if the Qt version is selected.
This commit is contained in:
Kai Koehne
2011-02-24 10:07:59 +01:00
parent eda6e85530
commit 8b5f742fdf

View File

@@ -701,9 +701,6 @@ QString QtVersion::toHtml() const
} // default config.
str << "<tr><td><b>" << QtVersionManager::tr("Version:")
<< "</b></td><td>" << qtVersionString() << "</td></tr>";
if (hasDebuggingHelper())
str << "<tr><td><b>" << QtVersionManager::tr("Debugging helper:")
<< "</b></td><td>" << debuggingHelperLibrary() << "</td></tr>";
const QHash<QString,QString> vInfo = versionInfo();
if (!vInfo.isEmpty()) {
const QHash<QString,QString>::const_iterator vcend = vInfo.constEnd();