diff options
author | Tobias Hunger <[email protected]> | 2013-01-29 18:01:47 +0100 |
---|---|---|
committer | Tobias Hunger <[email protected]> | 2013-04-11 15:15:18 +0200 |
commit | 41804ac884f8ca857785b50cb3256df95195ff8b (patch) | |
tree | 49136684bd4663c27253d53bda99d5387e29eb34 /src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h | |
parent | 87347bb064f81f9f7727bf8800b0964d57d34c22 (diff) |
Remove environmentinformation from the runconfigurations
It is no longer used.
Change-Id: Ie99af7b432bba07f8e334c99817bd535828ade8b
Reviewed-by: Daniel Teske <[email protected]>
Reviewed-by: Tobias Hunger <[email protected]>
Diffstat (limited to 'src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h')
-rw-r--r-- | src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h b/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h index 2bc2e894c0b..c94ead417ea 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h +++ b/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h @@ -33,7 +33,6 @@ #include "qmlprojectmanager_global.h" #include <projectexplorer/runconfiguration.h> -#include <utils/environment.h> #include <QPointer> @@ -43,11 +42,6 @@ namespace Core { class IEditor; } -namespace Utils { - class Environment; - class EnvironmentItem; -} - namespace QtSupport { class BaseQtVersion; } namespace QmlProjectManager { @@ -84,8 +78,6 @@ public: QString mainScript() const; - Utils::Environment environment() const; - // RunConfiguration bool isEnabled() const; QString disabledReason() const; @@ -111,10 +103,6 @@ private: static QString canonicalCapsPath(const QString &filePath); - Utils::Environment baseEnvironment() const; - void setUserEnvironmentChanges(const QList<Utils::EnvironmentItem> &diff); - QList<Utils::EnvironmentItem> userEnvironmentChanges() const; - // absolute path to current file (if being used) QString m_currentFileFilename; // absolute path to selected main script (if being used) @@ -127,8 +115,6 @@ private: QPointer<Internal::QmlProjectRunConfigurationWidget> m_configurationWidget; bool m_isEnabled; - - QList<Utils::EnvironmentItem> m_userEnvironmentChanges; }; } // namespace QmlProjectManager |