Merge branch '2.2'

Conflicts:
	src/plugins/qt4projectmanager/qt-maemo/maemodeploystep.cpp
	src/plugins/qt4projectmanager/qt-maemo/qt4maemotarget.cpp
	src/plugins/qt4projectmanager/qt-maemo/qt4maemotarget.h
This commit is contained in:
Bill King
2011-04-05 16:43:24 +02:00
67 changed files with 8640 additions and 4721 deletions

View File

@@ -609,10 +609,12 @@ void S60CreatePackageStep::checkForCancel()
m_timer->stop();
if (m_process) {
m_process->terminate();
m_process->waitForFinished(5000);
m_process->kill();
m_process->waitForFinished(5000); //while waiting, the process can be killed
if (m_process)
m_process->kill();
}
m_eventLoop->exit(false);
if (m_eventLoop)
m_eventLoop->exit(false);
}
}