Skip to content

Commit f41777c

Browse files
committed
Merge pull request #35 from ukrkyi/master
Fix of debug problem: entry point was not found
2 parents b4b96cd + 3d36bb2 commit f41777c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

debugger.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ void Debugger::processMessage(QString output, QString error)
165165
}
166166

167167
if (c == 1) {
168-
if (!error.isEmpty()) {
168+
if (error.indexOf("No symbol table is loaded",0,Qt::CaseInsensitive)!=-1) {
169169
dbgSymbols = false;
170170
} else {
171171
dbgSymbols = true;

0 commit comments

Comments
 (0)