forked from qt-creator/qt-creator
debugger: unify naming of sysroot related variables and function
Change-Id: I77dd74ba7260622d9fec6cfca4a06d0f817495d8 Reviewed-on: http://codereview.qt.nokia.com/212 Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
@@ -251,13 +251,12 @@ QString AttachCoreDialog::debuggerCommand()
|
||||
return m_ui->toolchainComboBox->debuggerCommand();
|
||||
}
|
||||
|
||||
QString AttachCoreDialog::sysRoot() const
|
||||
|
||||
QString AttachCoreDialog::sysroot() const
|
||||
{
|
||||
return m_ui->sysrootPathChooser->path();
|
||||
}
|
||||
|
||||
void AttachCoreDialog::setSysRoot(const QString &sysroot)
|
||||
void AttachCoreDialog::setSysroot(const QString &sysroot)
|
||||
{
|
||||
m_ui->sysrootPathChooser->setPath(sysroot);
|
||||
}
|
||||
@@ -789,12 +788,12 @@ bool StartRemoteDialog::useServerStartScript() const
|
||||
return m_ui->useServerStartScriptCheckBox->isChecked();
|
||||
}
|
||||
|
||||
void StartRemoteDialog::setSysRoot(const QString &sysroot)
|
||||
void StartRemoteDialog::setSysroot(const QString &sysroot)
|
||||
{
|
||||
m_ui->sysrootPathChooser->setPath(sysroot);
|
||||
}
|
||||
|
||||
QString StartRemoteDialog::sysRoot() const
|
||||
QString StartRemoteDialog::sysroot() const
|
||||
{
|
||||
return m_ui->sysrootPathChooser->path();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user