Commit 11e3360ff29231fb1781e40af307dfd472eab27c
| |   |
| 74 | 74 | m_signingMode(SignSelf) |
| 75 | 75 | { |
| 76 | 76 | if (!m_proFilePath.isEmpty()) |
| setName(tr("%1 on Device").arg(QFileInfo(m_proFilePath).completeBaseName())); |
| setName(tr("%1 on S60 Device").arg(QFileInfo(m_proFilePath).completeBaseName())); |
| 78 | 78 | else |
| 79 | 79 | setName(tr("QtS60DeviceRunConfiguration")); |
| 80 | 80 | |
| … | … | |
| 481 | 481 | QString S60DeviceRunConfigurationFactory::displayNameForType(const QString &type) const |
| 482 | 482 | { |
| 483 | 483 | QString fileName = type.mid(QString("QtS60DeviceRunConfiguration.").size()); |
| return tr("%1 on Device").arg(QFileInfo(fileName).completeBaseName()); |
| return tr("%1 on S60 Device").arg(QFileInfo(fileName).completeBaseName()); |
| 485 | 485 | } |
| 486 | 486 | |
| 487 | 487 | QSharedPointer<RunConfiguration> S60DeviceRunConfigurationFactory::create(Project *project, const QString &type) |
| |   |
| 52 | 52 | m_cachedTargetInformationValid(false) |
| 53 | 53 | { |
| 54 | 54 | if (!m_proFilePath.isEmpty()) |
| setName(tr("%1 in Emulator").arg(QFileInfo(m_proFilePath).completeBaseName())); |
| setName(tr("%1 in S60 Emulator").arg(QFileInfo(m_proFilePath).completeBaseName())); |
| 56 | 56 | else |
| 57 | 57 | setName(tr("QtS60EmulatorRunConfiguration")); |
| 58 | 58 | |
| … | … | |
| 239 | 239 | QString S60EmulatorRunConfigurationFactory::displayNameForType(const QString &type) const |
| 240 | 240 | { |
| 241 | 241 | QString fileName = type.mid(QString("QtS60EmulatorRunConfiguration.").size()); |
| return tr("%1 in Emulator").arg(QFileInfo(fileName).completeBaseName()); |
| return tr("%1 in S60 Emulator").arg(QFileInfo(fileName).completeBaseName()); |
| 243 | 243 | } |
| 244 | 244 | |
| 245 | 245 | QSharedPointer<RunConfiguration> S60EmulatorRunConfigurationFactory::create(Project *project, const QString &type) |