CMakeProjectManager: Don't use typed enum where it is unrelevant

It confuses lupdate (QTBUG-36589), and is totally unrelevant in this
case.

Change-Id: I65444fcdb62b7d95de9f22025272508aa3bf272e
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
Eike Ziller
2017-10-24 15:16:26 +02:00
committed by Tobias Hunger
parent 19bb8e34f8
commit 50e9c18c6a

View File

@@ -97,7 +97,7 @@ private:
bool isParsing() const;
enum ForceEnabledChanged : quint8 { False, True };
enum ForceEnabledChanged { False, True };
void clearError(ForceEnabledChanged fec = ForceEnabledChanged::False);
void setBuildTargets(const QList<CMakeBuildTarget> &targets);