Debugger: Filenames (for line-info) must be case-sensitive

git-svn-id: trunk@42495 -
This commit is contained in:
martin 2013-08-25 11:51:59 +00:00
parent b20db9cf61
commit fc3240996d

View File

@ -6815,11 +6815,11 @@ begin
FSourceIndex := TStringList.Create;
FSourceIndex.Sorted := True;
FSourceIndex.Duplicates := dupError;
FSourceIndex.CaseSensitive := False;
FSourceIndex.CaseSensitive := True;
FRequestedSources := TStringList.Create;
FRequestedSources.Sorted := True;
FRequestedSources.Duplicates := dupError;
FRequestedSources.CaseSensitive := False;
FRequestedSources.CaseSensitive := True;
inherited;
end;