aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/madde/maemopublisherfremantlefree.h
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@nokia.com>2012-05-18 10:49:35 +0200
committerChristian Kandeler <christian.kandeler@nokia.com>2012-05-22 10:51:53 +0200
commit53a1087d1321758ab1dc0a6ad737c135249bd5e6 (patch)
treeab0f9596da64a1907690b324bd05416c585eaf8c /src/plugins/madde/maemopublisherfremantlefree.h
parentb9d9bb7ba85e3b3ea0e06f0876272c0e3bebd144 (diff)
Move SSH support into a dedicated library.
It does not belong into libUtils, which is a collection of small unrelated utility classes. Task-number: QTCREATORBUG-7218 Change-Id: Id92b9f28678afec93e6f07166adfde6550f38072 Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
Diffstat (limited to 'src/plugins/madde/maemopublisherfremantlefree.h')
-rw-r--r--src/plugins/madde/maemopublisherfremantlefree.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/madde/maemopublisherfremantlefree.h b/src/plugins/madde/maemopublisherfremantlefree.h
index 298612fba5..39a692e964 100644
--- a/src/plugins/madde/maemopublisherfremantlefree.h
+++ b/src/plugins/madde/maemopublisherfremantlefree.h
@@ -32,7 +32,7 @@
#ifndef MAEMOPUBLISHERFREMANTLEFREE_H
#define MAEMOPUBLISHERFREMANTLEFREE_H
-#include <utils/ssh/sshconnection.h>
+#include <ssh/sshconnection.h>
#include <QObject>
#include <QProcess>
@@ -45,7 +45,7 @@ namespace Qt4ProjectManager {
class Qt4BuildConfiguration;
}
-namespace Utils {
+namespace QSsh {
class SshRemoteProcessRunner;
}
@@ -118,9 +118,9 @@ private:
State m_state;
QString m_tmpProjectDir;
QProcess *m_process;
- Utils::SshConnectionParameters m_sshParams;
+ QSsh::SshConnectionParameters m_sshParams;
QString m_remoteDir;
- Utils::SshRemoteProcessRunner *m_uploader;
+ QSsh::SshRemoteProcessRunner *m_uploader;
QByteArray m_scpOutput;
QList<QString> m_filesToUpload;
QString m_resultString;