From d6484109b7b284f0da2e4fdf18881722c8a93b4a Mon Sep 17 00:00:00 2001 From: Ulf Hermann Date: Mon, 5 Dec 2022 09:41:04 +0100 Subject: [PATCH] Add missing Q_OBJECT to PerfRunConfigurationAspect Without this we cannot identify the aspect when trying to retrieve the settings. Therefore, we always run without any settings, and in particular with an empty command line for perf. Fixes: QTCREATORBUG-28545 Change-Id: Ia419c939d57ff65eca4992faff02c121ca20c83f Reviewed-by: Reviewed-by: hjk --- src/plugins/perfprofiler/perfrunconfigurationaspect.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/perfprofiler/perfrunconfigurationaspect.h b/src/plugins/perfprofiler/perfrunconfigurationaspect.h index b0c06fa88d2..eaa4c4b7251 100644 --- a/src/plugins/perfprofiler/perfrunconfigurationaspect.h +++ b/src/plugins/perfprofiler/perfrunconfigurationaspect.h @@ -14,6 +14,7 @@ namespace PerfProfiler { class PERFPROFILER_EXPORT PerfRunConfigurationAspect : public ProjectExplorer::GlobalOrProjectAspect { + Q_OBJECT public: PerfRunConfigurationAspect(ProjectExplorer::Target *target); };