* chunk protected instead of private, Mantis #20543

git-svn-id: trunk@20969 -
This commit is contained in:
marco 2012-04-21 22:52:58 +00:00
parent 9f6121e878
commit d8101679fa

View File

@ -28,7 +28,7 @@ Type
TFPReaderPNG = class (TFPCustomImageReader) TFPReaderPNG = class (TFPCustomImageReader)
private private
Chunk : TChunk;
FHeader : THeaderChunk; FHeader : THeaderChunk;
ZData : TMemoryStream; // holds compressed data until all blocks are read ZData : TMemoryStream; // holds compressed data until all blocks are read
Decompress : TDeCompressionStream; // decompresses the data Decompress : TDeCompressionStream; // decompresses the data
@ -61,6 +61,7 @@ Type
function ColorColorAlpha8 (CD:TColorData) : TFPColor; function ColorColorAlpha8 (CD:TColorData) : TFPColor;
function ColorColorAlpha16 (CD:TColorData) : TFPColor; function ColorColorAlpha16 (CD:TColorData) : TFPColor;
protected protected
Chunk : TChunk;
UseTransparent, EndOfFile : boolean; UseTransparent, EndOfFile : boolean;
TransparentDataValue : TColorData; TransparentDataValue : TColorData;
UsingBitGroup : byte; UsingBitGroup : byte;