PerfProfiler: Un-export and de-Q_OBJECT-ify PerfRunConfigurationAspect

Not needed anymore.

Change-Id: Iadeed22e90ab98ae5db0a4305af7c862fc2a1810
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Dominik Holland <dominik.holland@qt.io>
This commit is contained in:
hjk
2024-03-07 16:29:25 +01:00
parent 4c0991b25d
commit ef569cc05d
2 changed files with 6 additions and 12 deletions

View File

@@ -8,7 +8,7 @@
#include <debugger/analyzer/analyzerrunconfigwidget.h>
namespace PerfProfiler {
namespace PerfProfiler::Internal {
PerfRunConfigurationAspect::PerfRunConfigurationAspect(ProjectExplorer::Target *target)
{
@@ -21,4 +21,4 @@ PerfRunConfigurationAspect::PerfRunConfigurationAspect(ProjectExplorer::Target *
setConfigWidgetCreator([this] { return new Debugger::AnalyzerRunConfigWidget(this); });
}
} // namespace PerfProfiler
} // PerfProfiler::Internal

View File

@@ -3,20 +3,14 @@
#pragma once
#include "perfprofiler_global.h"
#include <projectexplorer/runconfiguration.h>
#include <QObject>
namespace PerfProfiler::Internal {
namespace PerfProfiler {
class PERFPROFILER_EXPORT PerfRunConfigurationAspect :
public ProjectExplorer::GlobalOrProjectAspect
class PerfRunConfigurationAspect final : public ProjectExplorer::GlobalOrProjectAspect
{
Q_OBJECT
public:
PerfRunConfigurationAspect(ProjectExplorer::Target *target);
explicit PerfRunConfigurationAspect(ProjectExplorer::Target *target);
};
} // namespace PerfProfiler
} // PerfProfiler::Internal