forked from qt-creator/qt-creator
QmlDebugging: Show helper list also for Symbian Qt versions
This commit is contained in:
@@ -471,7 +471,7 @@ void QtOptionsPageWidget::updateDebuggingHelperUi()
|
|||||||
const QtVersion *version = currentVersion();
|
const QtVersion *version = currentVersion();
|
||||||
const QTreeWidgetItem *currentItem = m_ui->qtdirList->currentItem();
|
const QTreeWidgetItem *currentItem = m_ui->qtdirList->currentItem();
|
||||||
|
|
||||||
if (!version || !version->supportsBinaryDebuggingHelper()) {
|
if (!version || !version->isValid()) {
|
||||||
m_ui->debuggingHelperWidget->setVisible(false);
|
m_ui->debuggingHelperWidget->setVisible(false);
|
||||||
} else {
|
} else {
|
||||||
const DebuggingHelperBuildTask::Tools availableTools = DebuggingHelperBuildTask::availableTools(version);
|
const DebuggingHelperBuildTask::Tools availableTools = DebuggingHelperBuildTask::availableTools(version);
|
||||||
|
|||||||
@@ -2005,13 +2005,6 @@ QStringList QtVersion::debuggingHelperLibraryLocations() const
|
|||||||
return DebuggingHelperLibrary::locationsByInstallData(qtInstallData);
|
return DebuggingHelperLibrary::locationsByInstallData(qtInstallData);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool QtVersion::supportsBinaryDebuggingHelper() const
|
|
||||||
{
|
|
||||||
if (!isValid())
|
|
||||||
return false;
|
|
||||||
return qtAbis().at(0).os() != ProjectExplorer::Abi::SymbianOS;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool QtVersion::hasDocumentation() const
|
bool QtVersion::hasDocumentation() const
|
||||||
{
|
{
|
||||||
updateVersionInfo();
|
updateVersionInfo();
|
||||||
|
|||||||
@@ -141,7 +141,6 @@ public:
|
|||||||
void addToEnvironment(Utils::Environment &env) const;
|
void addToEnvironment(Utils::Environment &env) const;
|
||||||
QList<ProjectExplorer::HeaderPath> systemHeaderPathes() const;
|
QList<ProjectExplorer::HeaderPath> systemHeaderPathes() const;
|
||||||
|
|
||||||
bool supportsBinaryDebuggingHelper() const;
|
|
||||||
QString gdbDebuggingHelperLibrary() const;
|
QString gdbDebuggingHelperLibrary() const;
|
||||||
QString qmlDebuggingHelperLibrary(bool debugVersion) const;
|
QString qmlDebuggingHelperLibrary(bool debugVersion) const;
|
||||||
QString qmlDumpTool(bool debugVersion) const;
|
QString qmlDumpTool(bool debugVersion) const;
|
||||||
|
|||||||
Reference in New Issue
Block a user