NOISSUE make LaunchStep::bind private

Static analysis was complaining about it.
This commit is contained in:
Petr Mrázek 2018-10-31 00:04:21 +01:00
parent 2c03c67c36
commit e3ab393cec

View File

@ -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;
};
};