* Patch from Ondrej to fix sharing mode when loading fonts (bug ID 30070)

git-svn-id: trunk@33564 -
This commit is contained in:
michael 2016-04-27 16:02:12 +00:00
parent 5ac352bc3c
commit 60382b990e

View File

@ -741,7 +741,7 @@ Var
AStream: TFileStream;
begin
FFilename := AFilename;
AStream:= TFileStream.Create(AFileName,fmOpenRead);
AStream:= TFileStream.Create(AFileName,fmOpenRead or fmShareDenyNone);
try
LoadFromStream(AStream);
finally