QmlProject: Restrict UI to using the System Environment

There are probably very little use cases where you want to start
from a clean environment, and there is no such thing as a Build
Environment (although we magically add some toolchain settings to
the environment).
This commit is contained in:
Kai Koehne
2010-11-29 14:16:38 +01:00
parent e398225cd0
commit dcd1876d5b
5 changed files with 4 additions and 97 deletions

View File

@@ -111,12 +111,6 @@ private:
void setQtVersionId(int id);
Utils::Environment baseEnvironment() const;
enum BaseEnvironmentBase { CleanEnvironmentBase = 0,
SystemEnvironmentBase = 1,
BuildEnvironmentBase = 2};
void setBaseEnvironmentBase(BaseEnvironmentBase env);
BaseEnvironmentBase baseEnvironmentBase() const;
void setUserEnvironmentChanges(const QList<Utils::EnvironmentItem> &diff);
QList<Utils::EnvironmentItem> userEnvironmentChanges() const;
@@ -136,7 +130,6 @@ private:
bool m_isEnabled;
QList<Utils::EnvironmentItem> m_userEnvironmentChanges;
BaseEnvironmentBase m_baseEnvironmentBase;
};
} // namespace QmlProjectManager