You've already forked lazarus-ccr
* Update argument name to avoid conflict in event handlers. Issue 29388
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@4484 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -3268,9 +3268,9 @@ type
|
||||
Column: TColumnIndex; const S: String; TextSpace: Integer; var Result: String;
|
||||
var Done: Boolean) of object;
|
||||
TVTMeasureTextWidthEvent = procedure(Sender: TBaseVirtualTree; TargetCanvas: TCanvas; Node: PVirtualNode;
|
||||
Column: TColumnIndex; const Text: String; var Width: Integer) of object;
|
||||
Column: TColumnIndex; const CellText: String; var Width: Integer) of object;
|
||||
TVTDrawTextEvent = procedure(Sender: TBaseVirtualTree; TargetCanvas: TCanvas; Node: PVirtualNode;
|
||||
Column: TColumnIndex; const Text: String; const CellRect: TRect; var DefaultDraw: Boolean) of object;
|
||||
Column: TColumnIndex; const CellText: String; const CellRect: TRect; var DefaultDraw: Boolean) of object;
|
||||
|
||||
// Helper class to speed up rendering text formats for clipboard and drag'n drop transfers.
|
||||
|
||||
|
@ -3363,9 +3363,9 @@ type
|
||||
Column: TColumnIndex; const S: String; TextSpace: Integer; var Result: String;
|
||||
var Done: Boolean) of object;
|
||||
TVTMeasureTextEvent = procedure(Sender: TBaseVirtualTree; TargetCanvas: TCanvas; Node: PVirtualNode;
|
||||
Column: TColumnIndex; const Text: String; var Extent: Integer) of object;
|
||||
Column: TColumnIndex; const CellText: String; var Extent: Integer) of object;
|
||||
TVTDrawTextEvent = procedure(Sender: TBaseVirtualTree; TargetCanvas: TCanvas; Node: PVirtualNode;
|
||||
Column: TColumnIndex; const Text: String; const CellRect: TRect; var DefaultDraw: Boolean) of object;
|
||||
Column: TColumnIndex; const CellText: String; const CellRect: TRect; var DefaultDraw: Boolean) of object;
|
||||
|
||||
// Helper class to speed up rendering text formats for clipboard and drag'n drop transfers.
|
||||
|
||||
|
Reference in New Issue
Block a user