forked from qt-creator/qt-creator
Utils: Remove uses of deprecated PathChooser::path()
There's filePath() nowadays. Change-Id: Ief06bd07a69a287d6a5ca3c41eb7069dba869d52 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -101,7 +101,7 @@ void SettingsPageWidget::apply()
|
||||
{
|
||||
ClearCaseSettings rc;
|
||||
rc.ccCommand = m_ui.commandPathChooser->rawPath();
|
||||
rc.ccBinaryPath = m_ui.commandPathChooser->path();
|
||||
rc.ccBinaryPath = m_ui.commandPathChooser->filePath().toString();
|
||||
rc.timeOutS = m_ui.timeOutSpinBox->value();
|
||||
rc.autoCheckOut = m_ui.autoCheckOutCheckBox->isChecked();
|
||||
rc.noComment = m_ui.noCommentCheckBox->isChecked();
|
||||
|
||||
Reference in New Issue
Block a user