Skip to content

Commit

Permalink
Merge pull request #35 from ukrkyi/master
Browse files Browse the repository at this point in the history
Fix of debug problem: entry point was not found
  • Loading branch information
Dman95 committed Jun 11, 2015
2 parents b4b96cd + 3d36bb2 commit f41777c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion debugger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ void Debugger::processMessage(QString output, QString error)
}

if (c == 1) {
if (!error.isEmpty()) {
if (error.indexOf("No symbol table is loaded",0,Qt::CaseInsensitive)!=-1) {
dbgSymbols = false;
} else {
dbgSymbols = true;
Expand Down

0 comments on commit f41777c

Please sign in to comment.