ClearCaseSettings: Use FilePath for ccBinaryPath

Change-Id: I0de348d0b99a1f81d75418a7927c989283c4137a
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Jarek Kobus
2022-08-02 17:39:00 +02:00
parent 278d297397
commit b84c22b2fd
5 changed files with 12 additions and 15 deletions

View File

@@ -101,7 +101,7 @@ void SettingsPageWidget::apply()
{
ClearCaseSettings rc;
rc.ccCommand = m_ui.commandPathChooser->rawFilePath().toString();
rc.ccBinaryPath = m_ui.commandPathChooser->filePath().toString();
rc.ccBinaryPath = m_ui.commandPathChooser->filePath();
rc.timeOutS = m_ui.timeOutSpinBox->value();
rc.autoCheckOut = m_ui.autoCheckOutCheckBox->isChecked();
rc.noComment = m_ui.noCommentCheckBox->isChecked();