Changeset 464 for trunk/Packages/CevoComponents/GraphicSet.pas
- Timestamp:
- Nov 29, 2023, 6:25:22 PM (12 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/CevoComponents/GraphicSet.pas
r456 r464 45 45 Data: TBitmap; 46 46 Mask: TBitmap; 47 pixUsed: array of Byte;47 PixUsed: array of Byte; 48 48 Items: TGraphicSetItems; 49 49 procedure ResetPixUsed; … … 169 169 procedure TGraphicSet.ResetPixUsed; 170 170 begin 171 SetLength( pixUsed, Data.Height div 49 * 10);172 if Length( pixUsed) > 0 then173 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); 174 174 end; 175 175
Note:
See TracChangeset
for help on using the changeset viewer.