You've already forked lazarus-ccr
improved font handling and updated demo by Luiz Americo Pereira Camara
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@529 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -32,7 +32,7 @@ type
|
||||
procedure SetShowCloseButton(AValue: Boolean);
|
||||
protected
|
||||
procedure SetRotateDirection(const Value: TRotateDirection); override;
|
||||
procedure SetText(const Value: TCaption); override;
|
||||
procedure RealSetText(const Value: TCaption); override;
|
||||
public
|
||||
constructor Create(AOwner: TComponent); override;
|
||||
procedure Resize; override;
|
||||
@ -350,7 +350,7 @@ end;
|
||||
{-------------------------------------------------------------------------------
|
||||
TGradTabPageButton.SetText(const Value: TCaption)
|
||||
------------------------------------------------------------------------------}
|
||||
procedure TGradTabPageButton.SetText(const Value: TCaption);
|
||||
procedure TGradTabPageButton.RealSetText(const Value: TCaption);
|
||||
var
|
||||
NewCaption : TCaption;
|
||||
begin
|
||||
@ -359,7 +359,7 @@ begin
|
||||
{if FShowCloseButton then
|
||||
NewCaption := NewCaption+' ';}
|
||||
|
||||
inherited SetText(NewCaption);
|
||||
inherited RealSetText(NewCaption);
|
||||
|
||||
AlignCloseButton;
|
||||
|
||||
|
Reference in New Issue
Block a user