* removed 10 years deprecated property bytesperpixel

git-svn-id: trunk@33272 -
This commit is contained in:
marco 2016-03-18 14:08:26 +00:00
parent 2b210335a1
commit e160956abf

View File

@ -17,6 +17,7 @@
- Removed FBytesPerPixel, BytesPerPixel property is now deprecated, use BitsPerPixel instead. - Removed FBytesPerPixel, BytesPerPixel property is now deprecated, use BitsPerPixel instead.
- Rewritten a large part of the file, so we can handle all bmp color depths - Rewritten a large part of the file, so we can handle all bmp color depths
- Support for RLE4 and RLE8 encoding - Support for RLE4 and RLE8 encoding
03/2015 MvdV finally removed bytesperpixel. 10 years should be enough.
} }
{$mode objfpc}{$h+} {$mode objfpc}{$h+}
@ -54,7 +55,6 @@ type
constructor Create; override; constructor Create; override;
property BitsPerPixel : byte read FBpp write SetBpp; property BitsPerPixel : byte read FBpp write SetBpp;
property RLECompress : boolean read FRleCompress write FRleCompress; property RLECompress : boolean read FRleCompress write FRleCompress;
Property BytesPerPixel : Byte Read GetColorSize Write SetColorSize; deprecated;
end; end;