Skip to content
Snippets Groups Projects
Commit d82c1092 authored by Friedemann Kleint's avatar Friedemann Kleint
Browse files

CDB: Fix location marker not shown at first breakpoint in file.

Return value glitch in file name normalization.
parent ce144fd5
No related branches found
No related tags found
No related merge requests found
......@@ -311,7 +311,7 @@ QString CDBBreakPoint::normalizeFileName(const QString &f)
if (normalizedName.size() > 2 && normalizedName.at(1) == QLatin1Char(':'))
normalizedName[0] = normalizedName.at(0).toUpper();
normalizedFileNameCache()->insert(f, normalizedName);
return f;
return normalizedName;
}
void CDBBreakPoint::clearNormalizeFileNameCache()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment