Skip to content
Snippets Groups Projects
Commit 04a6d467 authored by kh1's avatar kh1
Browse files

Fix rare crash.

In case one stoped the running application on the device, removed the
project from the IDE and then closing the app output window would crash.
parent 22adebc5
No related merge requests found
......@@ -1257,6 +1257,9 @@ void MaemoRunControl::executionFinished()
void MaemoRunControl::stop()
{
if (!isRunning()
return;
stoppedByUser = true;
if (isDeploying()) {
stopDeployment();
......
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