summaryrefslogtreecommitdiff
path: root/src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@nokia.com>2011-07-14 15:38:16 +0200
committerChristian Kandeler <christian.kandeler@nokia.com>2011-07-14 15:47:35 +0200
commit2bdc5c79c6b1193b6fb2e70a8ba24b7306c0121f (patch)
tree0d6dbd7da1902eb8c685462e9bd806bd6b4d414a /src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp
parent82bbac7f906948278b666a78a402099d65bfd1dd (diff)
downloadqt-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.cpp6
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)