tr()-Fixes in master.

- Add missing Q_OBJECTS
- Clean up Android, fix capitalization, remove redundant
  translations.

Change-Id: I24583b7e363ff8f90cad3b8257b676888e8a59db
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
Friedemann Kleint
2012-05-25 16:21:19 +02:00
committed by hjk
parent bc9326abb7
commit 753acdcf82
13 changed files with 45 additions and 27 deletions

View File

@@ -96,7 +96,9 @@ void AndroidDeployStepWidget::setDeployLocalQtLibs()
void AndroidDeployStepWidget::setQASIPackagePath()
{
QString packagePath = QFileDialog::getOpenFileName(this, tr("Qt Android smart installer"), QDir::homePath(), tr("Android package (*.apk)"));
QString packagePath =
QFileDialog::getOpenFileName(this, tr("Qt Android Smart Installer"),
QDir::homePath(), tr("Android package (*.apk)"));
if (packagePath.length())
m_step->setDeployQASIPackagePath(packagePath);
}