Skip to content

Commit

Permalink
Issue #936: TVTHeader.DragTo() is now virtual.
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmarder committed Nov 30, 2019
1 parent 997a751 commit 4c8f5cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/VirtualTrees.pas
Original file line number Diff line number Diff line change
Expand Up @@ -1355,7 +1355,7 @@ TVTHeader = class(TPersistent)
function DoHeightTracking(var P: TPoint; Shift: TShiftState): Boolean; virtual;
function DoHeightDblClickResize(var P: TPoint; Shift: TShiftState): Boolean; virtual;
procedure DoSetSortColumn(Value: TColumnIndex; pSortDirection: TSortDirection); virtual;
procedure DragTo(P: TPoint);
procedure DragTo(P: TPoint); virtual;
procedure FixedAreaConstraintsChanged(Sender: TObject);
function GetColumnsClass: TVirtualTreeColumnsClass; virtual;
function GetOwner: TPersistent; override;
Expand Down Expand Up @@ -25305,7 +25305,7 @@ procedure TBaseVirtualTree.UpdateDesigner;

//----------------------------------------------------------------------------------------------------------------------

procedure TBaseVirtualTree.UpdateHeaderRect;
procedure TBaseVirtualTree.UpdateHeaderRect();

// Calculates the rectangle the header occupies in non-client area.
// These coordinates are in window rectangle.
Expand Down

0 comments on commit 4c8f5cc

Please sign in to comment.