Browse Source

* removed 10 years deprecated property bytesperpixel

git-svn-id: trunk@33272 -
marco 9 years ago
parent
commit
e160956abf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/fcl-image/src/fpwritebmp.pp

+ 1 - 1
packages/fcl-image/src/fpwritebmp.pp

@@ -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;