From 942bd5f74b7da70ddc5e4ebed527f3d33f8c9919 Mon Sep 17 00:00:00 2001 From: Tobias Hunger Date: Tue, 10 Jul 2018 13:47:11 +0200 Subject: [PATCH] CMake: CMakeTool de-QObject-ification Change-Id: I7c9dde72b8672be67f6771f98b54b31fa44a9166 Reviewed-by: Ulf Hermann Reviewed-by: Eike Ziller --- src/plugins/cmakeprojectmanager/cmaketool.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/plugins/cmakeprojectmanager/cmaketool.h b/src/plugins/cmakeprojectmanager/cmaketool.h index 95556cefd70..22f20504197 100644 --- a/src/plugins/cmakeprojectmanager/cmaketool.h +++ b/src/plugins/cmakeprojectmanager/cmaketool.h @@ -43,9 +43,8 @@ namespace ProjectExplorer { class Kit; } namespace CMakeProjectManager { -class CMAKE_EXPORT CMakeTool : public QObject +class CMAKE_EXPORT CMakeTool { - Q_OBJECT public: enum Detection { ManualDetection, @@ -79,7 +78,7 @@ public: explicit CMakeTool(Detection d, const Core::Id &id); explicit CMakeTool(const QVariantMap &map, bool fromSdk); - ~CMakeTool() override = default; + ~CMakeTool() = default; static Core::Id createId();