From e3ab393cec7f69158d5de3fe1a5f248a1cdc64d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Wed, 31 Oct 2018 00:04:21 +0100 Subject: [PATCH] NOISSUE make LaunchStep::bind private Static analysis was complaining about it. --- api/logic/launch/LaunchStep.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/logic/launch/LaunchStep.h b/api/logic/launch/LaunchStep.h index 0abe456a..1aaf64af 100644 --- a/api/logic/launch/LaunchStep.h +++ b/api/logic/launch/LaunchStep.h @@ -31,8 +31,8 @@ public: /* methods */ }; virtual ~LaunchStep() {}; -protected: /* methods */ - virtual void bind(LaunchTask *parent); +private: /* methods */ + void bind(LaunchTask *parent); signals: void logLines(QStringList lines, MessageLevel::Enum level); @@ -47,4 +47,4 @@ public slots: protected: /* data */ LaunchTask *m_parent; -}; \ No newline at end of file +};