Skip to content
Snippets Groups Projects
Commit 8127341d authored by kh1's avatar kh1
Browse files

Change the label from Qemu to Maemo Emulator.

parent 2a9f019e
No related branches found
No related tags found
No related merge requests found
......@@ -140,10 +140,10 @@ MaemoManager::addQemuSimulatorStarter(Project *project)
Core::ModeManager *modeManager = core->modeManager();
Core::ActionManager *actionManager = core->actionManager();
QAction *action = new QAction("Qemu", this);
QAction *action = new QAction("Maemo Emulator", this);
action->setIcon(icon.pixmap(iconSize));
action->setToolTip(tr("Start Qemu"));
m_qemuCommand = actionManager->registerAction(action, "qemu",
action->setToolTip(tr("Start Maemo Emulator"));
m_qemuCommand = actionManager->registerAction(action, "MaemoEmulator",
QList<int>() << Core::Constants::C_GLOBAL_ID);
modeManager->addAction(m_qemuCommand, 1);
m_qemuCommand->action()->setEnabled(true);
......@@ -179,10 +179,10 @@ MaemoManager::updateQemuSimulatorStarter(bool running)
{
if (m_qemuCommand) {
QIcon::State state = QIcon::Off;
QString toolTip(tr("Start Qemu"));
QString toolTip(tr("Start Maemo Emulator"));
if (running) {
state = QIcon::On;
toolTip = tr("Stop Qemu");
toolTip = tr("Stop Maemo Emulator");
}
QAction *action = m_qemuCommand->action();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment