Ignore:
Timestamp:
Mar 17, 2011, 11:11:36 AM (13 years ago)
Author:
george
Message:
  • Modified: Better tabs popup animation.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Docking/CoolDocking/Common/URectangle.pas

    r197 r204  
    3232    Right: Integer;
    3333    Bottom: Integer;
     34
     35    procedure Assign(Source: TRectangle);
    3436
    3537    property Width: Integer read GetWidth write SetWidth;
     
    132134end;
    133135
     136procedure TRectangle.Assign(Source: TRectangle);
     137begin
     138  Left := Source.Left;
     139  Top := Source.Top;
     140  Right := Source.Right;
     141  Bottom := Source.Bottom;
     142end;
     143
    134144end.
    135145
Note: See TracChangeset for help on using the changeset viewer.