diff options
author | hjk <hjk@qt.io> | 2023-02-07 16:46:47 +0100 |
---|---|---|
committer | hjk <hjk@qt.io> | 2023-03-07 15:53:18 +0000 |
commit | 5d21da74f952600482afe300dbc67aa63ab2eaf5 (patch) | |
tree | caec1eec640795e6d95a7a0a7ebd0fb4d9753dc2 /src/plugins/perfprofiler | |
parent | d0fae7fa592795468a2fe6e86197a7899fa1b5a0 (diff) | |
download | qt-creator-5d21da74f952600482afe300dbc67aa63ab2eaf5.tar.gz |
Utils: More explicit host os use to make it stand out
Quite a few of the uses are actually wrong, but are better visible
now and therefore more likely to be fixed.
Change-Id: Ia51f7d6eb1b2d3a9c9f73d67dabacfd227c44b15
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Diffstat (limited to 'src/plugins/perfprofiler')
-rw-r--r-- | src/plugins/perfprofiler/perfsettings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/perfprofiler/perfsettings.cpp b/src/plugins/perfprofiler/perfsettings.cpp index 8175dece0e..9bea76b3e2 100644 --- a/src/plugins/perfprofiler/perfsettings.cpp +++ b/src/plugins/perfprofiler/perfsettings.cpp @@ -122,7 +122,7 @@ QStringList PerfSettings::perfRecordArguments() const "--call-graph", callgraphArg, sampleMode.itemValue().toString(), QString::number(period.value())}) - + ProcessArgs::splitArgs(extraArguments.value()); + + ProcessArgs::splitArgs(extraArguments.value(), HostOsInfo::hostOs()); } void PerfSettings::resetToDefault() |