* 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:
blikblum
2016-02-01 00:56:26 +00:00
parent 2d94675a6b
commit a9c3c81c14
2 changed files with 4 additions and 4 deletions

View File

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

View File

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