Fix no line number in debug

This commit is contained in:
Simon De Backer
2020-08-14 18:35:53 +02:00
parent 274108d509
commit de8ccc543d

View File

@@ -104,7 +104,7 @@ void myMessageOutput(QtMsgType type,
txt+= " ("; txt+= " (";
txt+= context.file ? context.file : ""; txt+= context.file ? context.file : "";
txt+= ":"; txt+= ":";
txt+= context.line ? context.line :0; txt+=QString::number(context.line ? context.line :0);
txt+= ", "; txt+= ", ";
txt+= context.function ? context.function : ""; txt+= context.function ? context.function : "";
txt+=")\n"; txt+=")\n";