~ubuntu-sdk-team/qtcreator-plugin-remotelinux/trunk

« back to all changes in this revision

Viewing changes to src/remotelinux/remotelinuxenvironmentaspect.cpp

[ Benjamin Zeller ]
* Added debian packaging
* Added AbstractRemoteLinuxRunConfiguration to allow plugins to 
  ship a custom RemoteRunConfiguration
* Backporting Fix for QTCREATORBUG-11553 (Enable QML debugging also for generic remote linux)

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
    return Utils::Environment();
74
74
}
75
75
 
76
 
RemoteLinuxRunConfiguration *RemoteLinuxEnvironmentAspect::runConfiguration() const
 
76
AbstractRemoteLinuxRunConfiguration *RemoteLinuxEnvironmentAspect::runConfiguration() const
77
77
{
78
 
    return qobject_cast<RemoteLinuxRunConfiguration *>(EnvironmentAspect::runConfiguration());
 
78
    return qobject_cast<AbstractRemoteLinuxRunConfiguration *>(EnvironmentAspect::runConfiguration());
79
79
}
80
80
 
81
81
Utils::Environment RemoteLinuxEnvironmentAspect::remoteEnvironment() const