diff options
author | Christian Kandeler <christian.kandeler@nokia.com> | 2011-07-14 15:38:16 +0200 |
---|---|---|
committer | Christian Kandeler <christian.kandeler@nokia.com> | 2011-07-14 15:47:35 +0200 |
commit | 2bdc5c79c6b1193b6fb2e70a8ba24b7306c0121f (patch) | |
tree | 0d6dbd7da1902eb8c685462e9bd806bd6b4d414a /src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp | |
parent | 82bbac7f906948278b666a78a402099d65bfd1dd (diff) | |
download | qt-creator-2bdc5c79c6b1193b6fb2e70a8ba24b7306c0121f.tar.gz |
RemoteLinux: Separate generic and MADDE-specific deploy configurations.
Change-Id: If06ee9fbf91a50bcb6c7b79a824f3f74f92b98d2
Reviewed-on: http://codereview.qt.nokia.com/1671
Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
Diffstat (limited to 'src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp')
-rw-r--r-- | src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp b/src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp index fa624cc420..deec052742 100644 --- a/src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp +++ b/src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp @@ -38,8 +38,6 @@ #include <projectexplorer/projectexplorerconstants.h> #include <qt4projectmanager/qt4buildconfiguration.h> -#include <QtCore/QTimer> - using namespace ProjectExplorer; namespace RemoteLinux { @@ -118,9 +116,9 @@ BuildStepConfigWidget *AbstractRemoteLinuxDeployStep::createConfigWidget() return new Internal::MaemoDeployStepBaseWidget(this); } -Internal::Qt4MaemoDeployConfiguration *AbstractRemoteLinuxDeployStep::deployConfiguration() const +RemoteLinuxDeployConfiguration *AbstractRemoteLinuxDeployStep::deployConfiguration() const { - return qobject_cast<Internal::Qt4MaemoDeployConfiguration *>(BuildStep::deployConfiguration()); + return qobject_cast<RemoteLinuxDeployConfiguration *>(BuildStep::deployConfiguration()); } void AbstractRemoteLinuxDeployStep::handleProgressMessage(const QString &message) |