Ignore:
Timestamp:
Nov 29, 2023, 6:25:22 PM (7 months ago)
Author:
chronos
Message:
  • Modified: Code cleanup.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Packages/CevoComponents/GraphicSet.pas

    r456 r464  
    4545    Data: TBitmap;
    4646    Mask: TBitmap;
    47     pixUsed: array of Byte;
     47    PixUsed: array of Byte;
    4848    Items: TGraphicSetItems;
    4949    procedure ResetPixUsed;
     
    169169procedure TGraphicSet.ResetPixUsed;
    170170begin
    171   SetLength(pixUsed, Data.Height div 49 * 10);
    172   if Length(pixUsed) > 0 then
    173     FillChar(pixUsed[0], Length(pixUsed), 0);
     171  SetLength(PixUsed, Data.Height div 49 * 10);
     172  if Length(PixUsed) > 0 then
     173    FillChar(PixUsed[0], Length(PixUsed), 0);
    174174end;
    175175
Note: See TracChangeset for help on using the changeset viewer.