Fix directory separator

This commit is contained in:
Tobias Hunger
2010-07-06 15:43:44 +02:00
parent 1a2a4f6387
commit 6dd2ef53fa
2 changed files with 2 additions and 2 deletions

View File

@@ -84,7 +84,7 @@ void MaemoPackageCreationWidget::init()
QString MaemoPackageCreationWidget::summaryText() const
{
return tr("<b>Create Package:</b> ") + m_step->packageFilePath();
return tr("<b>Create Package:</b> ") + QDir::toNativeSeparators(m_step->packageFilePath());
}
QString MaemoPackageCreationWidget::displayName() const