Bug #1041
TheIDE - "Failed to start application" dialog should escape ide debuging mode
Status: | Approved | Start date: | 04/11/2015 | |
---|---|---|---|---|
Priority: | Normal | Due date: | ||
Assignee: | Miroslav Fidler | % Done: | 0% | |
Category: | IDE | Spent time: | - | |
Target version: | - |
Description
If dialog "Failed to start application" occures it should close ide debuger interface.
P.S.
Quite annoying ;)
History
#1 Updated by Zbigniew Rebacz about 8 years ago
- File GdbMI2Fix.diff
added
It seems that it is Gdb_MI2 related problem. The solution is relatively easy:
if(!started) { Exclamation(t_("Failed to start application")); IdeEndDebug(); // <- Add this, to prevent return; }
Official patch, without comment is in diff form.
#2 Updated by Zbigniew Rebacz about 8 years ago
- Status changed from New to Patch ready
#3 Updated by Zbigniew Rebacz about 8 years ago
It seems I missed some information. First of all is file information (ide/Debuggers - Gdb_MI2.cpp - line 141). And of course comment isn't completed in my last post:
if(!started) { Exclamation(t_("Failed to start application")); IdeEndDebug(); // <- Closed all debug panes. return; }
#4 Updated by Miroslav Fidler about 8 years ago
- Status changed from Patch ready to Approved