Move ProjectExplorer::Environment to Utils::Environment

Reviewed-by: dt
This commit is contained in:
Tobias Hunger
2010-09-23 10:35:23 +02:00
parent 747f750370
commit f5c044fe48
70 changed files with 309 additions and 295 deletions

View File

@@ -37,7 +37,7 @@
#include "maemodeviceconfigurations.h"
#include <projectexplorer/environment.h>
#include <utils/environment.h>
#include <QtCore/QObject>
@@ -61,7 +61,7 @@ public:
void start();
void stop();
ProjectExplorer::Environment deviceEnvironment() const { return m_env; }
Utils::Environment deviceEnvironment() const { return m_env; }
signals:
void finished();
@@ -81,7 +81,7 @@ private slots:
private:
bool m_stop;
QString m_remoteOutput;
ProjectExplorer::Environment m_env;
Utils::Environment m_env;
MaemoDeviceConfig m_devConfig;
QSharedPointer<Core::SshConnection> m_connection;
QSharedPointer<Core::SshRemoteProcess> m_remoteProcess;