Debugger: Indentation fix

Change-Id: If79779f6fee6302b5ac94a4a4068ca52a247bf08
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
Orgad Shaneh
2014-05-05 17:08:28 +03:00
committed by hjk
parent c783fba706
commit e036352b1b

View File

@@ -481,7 +481,7 @@ bool parseCdbDisassemblerFunctionLine(const QString &l,
const int linePos = l.indexOf(QLatin1String(" @ "), filePos + 1);
if (linePos == -1)
return false;
*sourceFile = l.mid(filePos + 1, linePos - filePos - 1).trimmed();
*sourceFile = l.mid(filePos + 1, linePos - filePos - 1).trimmed();
if (debugDisAsm)
qDebug() << "Function with source: " << l << currentFunction
<< functionOffset << sourceFile;