mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-23 11:40:35 +02:00
LCL: Workaround a bug in FPC trunk that causes Arithmetic overflow in TControlbar with type TRowSize = 1..MaxInt;. Issue #27167.
git-svn-id: trunk@47202 -
This commit is contained in:
parent
890e8de7d4
commit
8a48485cac
@ -1195,7 +1195,7 @@ type
|
||||
TBandPaintEvent = procedure (Sender: TObject; Control: TControl; Canvas: TCanvas;
|
||||
var ARect: TRect; var Options: TBandPaintOptions) of object;
|
||||
|
||||
TRowSize = 1..MaxInt;
|
||||
TRowSize = Integer; // was 1..MaxInt; which causes SIGFPE on Windows with 32-bit FPC2.7.1
|
||||
|
||||
TBandMove = (bmNone, bmReady, bmMoving);
|
||||
TCursorDesign = (cdDefault, cdGrabber, cdRestricted);
|
||||
|
Loading…
Reference in New Issue
Block a user