RemoteLinux: Rename a bunch of classes.

They still had "Maemo" in their names, even though
they are not Maemo-specific (and will not move
to the respective plugin).

Change-Id: I5eec0de27db8340f2a987a6ed685b3ae46ec17b0
Reviewed-on: http://codereview.qt.nokia.com/2036
Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
This commit is contained in:
Christian Kandeler
2011-07-22 12:38:57 +02:00
parent 4bf65fe47b
commit 9d5f420f4d
26 changed files with 198 additions and 214 deletions

View File

@@ -43,7 +43,7 @@ namespace RemoteLinux {
class DeploymentInfo;
namespace Internal {
class MaemoPerTargetDeviceConfigurationListModel;
class TypeSpecificDeviceConfigurationListModel;
} // namespace Internal
class REMOTELINUX_EXPORT RemoteLinuxDeployConfiguration
@@ -63,7 +63,7 @@ public:
void setDeviceConfiguration(int index);
QSharedPointer<DeploymentInfo> deploymentInfo() const;
QSharedPointer<Internal::MaemoPerTargetDeviceConfigurationListModel> deviceConfigModel() const;
QSharedPointer<Internal::TypeSpecificDeviceConfigurationListModel> deviceConfigModel() const;
QSharedPointer<const LinuxDeviceConfiguration> deviceConfiguration() const;
signals:
@@ -78,7 +78,7 @@ private:
Q_SLOT void handleDeviceConfigurationListUpdated();
QSharedPointer<DeploymentInfo> m_deploymentInfo;
QSharedPointer<Internal::MaemoPerTargetDeviceConfigurationListModel> m_devConfModel;
QSharedPointer<Internal::TypeSpecificDeviceConfigurationListModel> m_devConfModel;
QSharedPointer<const LinuxDeviceConfiguration> m_deviceConfiguration;
};