diff options
author | hjk <[email protected]> | 2025-01-10 14:30:46 +0100 |
---|---|---|
committer | hjk <[email protected]> | 2025-01-13 08:04:22 +0000 |
commit | f5599f3112202ad84ea493be347d7ba10a07cdee (patch) | |
tree | 3991c572e35c2688df2f0b827a68dc20c64f37d3 /src/plugins/debugger/cdb | |
parent | 119a0920c119e1bf631b16babab72b5c71740495 (diff) |
Debugger: Replace some uses of FilePath::toUrlishString()
Change-Id: Iec777effda0b19b840b783606a01c804d42306a2
Reviewed-by: David Schulz <[email protected]>
Diffstat (limited to 'src/plugins/debugger/cdb')
-rw-r--r-- | src/plugins/debugger/cdb/cdbengine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/cdb/cdbengine.cpp b/src/plugins/debugger/cdb/cdbengine.cpp index cd0dda11905..6f9f07ea47a 100644 --- a/src/plugins/debugger/cdb/cdbengine.cpp +++ b/src/plugins/debugger/cdb/cdbengine.cpp @@ -2465,7 +2465,7 @@ unsigned BreakpointCorrectionContext::fixLineNumber(const FilePath &filePath, } if (debug) qDebug("Code model: Breakpoint line %u -> %u in %s", - lineNumber, correctedLine, qPrintable(filePath.toUrlishString())); + lineNumber, correctedLine, qPrintable(filePath.toUserOutput())); return correctedLine; } |