IDE: debugger: removed unneeded path delim fix in TDebugManager.GetFullFilename

git-svn-id: trunk@18929 -
This commit is contained in:
mattias 2009-03-09 15:29:07 +00:00
parent 4ba2b2770c
commit 9c1c4073f2

View File

@ -1140,7 +1140,7 @@ begin
// some debuggers (e.g. gdb) sometimes returns linux path delims under windows
// => fix that
Filename := TrimFilename(SwitchPathDelims(Filename,pdsSystem));
Filename := TrimFilename(Filename);
SrcFile := Filename;
SrcFile := MainIDE.FindSourceFile(SrcFile,Project1.ProjectDirectory,
[fsfSearchForProject,fsfUseIncludePaths,fsfUseDebugPath]);