Maemo: Give display names to packaging and deploy steps.

This commit is contained in:
ck
2010-08-16 11:40:41 +02:00
parent b58c147ccd
commit b639a6e7c3
4 changed files with 4 additions and 1 deletions

View File

@@ -85,6 +85,8 @@ MaemoDeployStep::~MaemoDeployStep()
void MaemoDeployStep::ctor()
{
setDisplayName(tr("Deploying to Maemo device"));
m_connecting = false;
m_needsInstall = false;
m_stopped = false;

View File

@@ -75,6 +75,7 @@ class MaemoDeployStep : public ProjectExplorer::BuildStep
friend class MaemoDeployStepFactory;
public:
MaemoDeployStep(ProjectExplorer::BuildStepList *bc);
virtual ~MaemoDeployStep();
MaemoDeviceConfig deviceConfig() const;
MaemoDeviceConfigListModel *deviceConfigModel() const;

View File

@@ -97,6 +97,7 @@ MaemoPackageCreationStep::~MaemoPackageCreationStep()
void MaemoPackageCreationStep::ctor()
{
setDisplayName(tr("Packaging for Maemo"));
connect(buildConfiguration(), SIGNAL(buildDirectoryChanged()), this,
SIGNAL(packageFilePathChanged()));
}

View File

@@ -68,7 +68,6 @@ public:
~MaemoPackageCreationStep();
QString packageFilePath() const;
bool isPackagingEnabled() const { return m_packagingEnabled; }
void setPackagingEnabled(bool enabled) { m_packagingEnabled = enabled; }