From 97689ca9c26d1f09755cf65c2dcce86cf43f5480 Mon Sep 17 00:00:00 2001 From: Ulf Hermann Date: Tue, 6 Dec 2016 17:53:00 +0100 Subject: [PATCH] RemoteLinux: Adapt to new PerfSettings API Change-Id: If225c99a512ec36eb18149734dcdea5f41c790d0 Reviewed-by: Christian Kandeler --- src/plugins/remotelinux/remotelinuxanalyzesupport.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/remotelinux/remotelinuxanalyzesupport.cpp b/src/plugins/remotelinux/remotelinuxanalyzesupport.cpp index f97db9fdf1a..cb8890cf2af 100644 --- a/src/plugins/remotelinux/remotelinuxanalyzesupport.cpp +++ b/src/plugins/remotelinux/remotelinuxanalyzesupport.cpp @@ -67,7 +67,8 @@ public: runConfiguration->extraAspect("Analyzer.Perf.Settings"); QTC_ASSERT(perfAspect, return); perfRecordArguments = - perfAspect->currentSettings()->property("perfRecordArguments").toString(); + perfAspect->currentSettings()->property("perfRecordArguments").toStringList() + .join(' '); } const QPointer runControl;