Remove environmentinformation from the runconfigurations

It is no longer used.

Change-Id: Ie99af7b432bba07f8e334c99817bd535828ade8b
Reviewed-by: Daniel Teske <daniel.teske@digia.com>
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
Tobias Hunger
2013-01-29 18:01:47 +01:00
parent 87347bb064
commit 41804ac884
18 changed files with 6 additions and 876 deletions

View File

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