All: Use the shorter access to aspect values in a few places

Change-Id: Ie0ff0e4e1cf4c2750897ea733dfccb743f44fa93
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
hjk
2023-05-12 16:51:12 +02:00
parent 30af7a9503
commit c85b72000f
21 changed files with 61 additions and 58 deletions

View File

@@ -1333,7 +1333,7 @@ CommandResult CvsPluginPrivate::runCvs(const FilePath &workingDirectory,
if (executable.isEmpty())
return CommandResult(ProcessResult::StartFailed, Tr::tr("No CVS executable specified."));
const int timeoutS = m_settings.timeout.value() * timeoutMultiplier;
const int timeoutS = m_settings.timeout() * timeoutMultiplier;
return m_client->vcsSynchronousExec(workingDirectory,
{executable, m_settings.addOptions(arguments)},
flags, timeoutS, outputCodec);