* Make TIHData fields public, patch from Ondrej Pokorny, bug ID #30093

git-svn-id: trunk@33635 -
This commit is contained in:
michael 2016-05-03 14:22:30 +00:00
parent 3d479ed732
commit 698d92dca1

View File

@ -234,6 +234,12 @@ type
FExtension, FTypeName, FDefaultExt : string;
FReader : TFPCustomImageReaderClass;
FWriter : TFPCustomImageWriterClass;
public
property Extension: string read FExtension;
property TypeName: string read FTypeName;
property DefaultExt: string read FDefaultExt;
property Reader : TFPCustomImageReaderClass read FReader;
property Writer : TFPCustomImageWriterClass read FWriter;
end;
TImageHandlersManager = class