Maemo: Always show correct package path.

We now react to the build directory being changed.

Reviewed-by: kh1
This commit is contained in:
ck
2010-07-28 16:03:11 +02:00
parent f1253b7f66
commit 16e9d050b8
3 changed files with 15 additions and 1 deletions

View File

@@ -66,6 +66,8 @@ MaemoPackageCreationWidget::MaemoPackageCreationWidget(MaemoPackageCreationStep
m_ui->minor->setValue(list.value(1, QLatin1String("0")).toInt());
m_ui->patch->setValue(list.value(2, QLatin1String("0")).toInt());
versionInfoChanged();
connect(m_step, SIGNAL(packageFilePathChanged()), this,
SIGNAL(updateSummary()));
}
void MaemoPackageCreationWidget::init()
@@ -94,7 +96,6 @@ void MaemoPackageCreationWidget::versionInfoChanged()
{
m_step->setVersionString(m_ui->major->text() + QLatin1Char('.')
+ m_ui->minor->text() + QLatin1Char('.') + m_ui->patch->text());
emit updateSummary();
}
} // namespace Internal