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

@@ -31,7 +31,7 @@
#include "publickeydeploymentdialog.h"
#include "linuxdeviceconfiguration.h"
#include "maemokeydeployer.h"
#include "sshkeydeployer.h"
#include <QtGui/QFileDialog>
@@ -40,7 +40,7 @@ namespace Internal {
class PublicKeyDeploymentDialogPrivate
{
public:
MaemoKeyDeployer *keyDeployer;
SshKeyDeployer *keyDeployer;
bool done;
};
} // namespace Internal;
@@ -56,7 +56,7 @@ PublicKeyDeploymentDialog::PublicKeyDeploymentDialog(const LinuxDeviceConfigurat
setMinimumDuration(0);
setMaximum(1);
m_d->keyDeployer = new MaemoKeyDeployer(this);
m_d->keyDeployer = new SshKeyDeployer(this);
m_d->done = false;
setLabelText(tr("Waiting for file name..."));