diff options
author | Petr Mrázek <peterix@gmail.com> | 2018-10-31 00:04:21 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2018-10-31 00:04:21 +0100 |
commit | e3ab393cec7f69158d5de3fe1a5f248a1cdc64d8 (patch) | |
tree | 954dc82b44b4080e4c86a24f1b64acd3bf37c826 /api/logic/launch/LaunchStep.h | |
parent | 2c03c67c36a4a093e0f28e814f0ba8ed3141875a (diff) | |
download | MultiMC-e3ab393cec7f69158d5de3fe1a5f248a1cdc64d8.tar MultiMC-e3ab393cec7f69158d5de3fe1a5f248a1cdc64d8.tar.gz MultiMC-e3ab393cec7f69158d5de3fe1a5f248a1cdc64d8.tar.lz MultiMC-e3ab393cec7f69158d5de3fe1a5f248a1cdc64d8.tar.xz MultiMC-e3ab393cec7f69158d5de3fe1a5f248a1cdc64d8.zip |
NOISSUE make LaunchStep::bind private
Static analysis was complaining about it.
Diffstat (limited to 'api/logic/launch/LaunchStep.h')
-rw-r--r-- | api/logic/launch/LaunchStep.h | 6 |
1 files 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 +}; |