mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-22 17:50:52 +01:00
Fix no line number in debug
This commit is contained in:
@@ -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";
|
||||||
|
|||||||
Reference in New Issue
Block a user