Debugger[CDB]: Use file normalization function from utils.

Remove complicated/expensive function in dbgwinutils
in favour of the utils one (improved to upper case
the drive letter) as it is sufficient now with
the improved checking in editor manager/location mark.
This commit is contained in:
Friedemann Kleint
2011-04-28 11:11:34 +02:00
parent 5ee1ee0b9e
commit c5a40e9e63
4 changed files with 4 additions and 56 deletions

View File

@@ -2477,7 +2477,7 @@ CdbEngine::NormalizedSourceFileName CdbEngine::sourceMapNormalizeFileNameFromDeb
DebuggerToSource);
// Up/lower case normalization according to Windows.
#ifdef Q_OS_WIN
QString normalized = winNormalizeFileName(fileName);
QString normalized = Utils::normalizePathName(fileName);
#else
QString normalized = fileName;
#endif