Skip to content

Commit

Permalink
Small typo in bgracustomdrawn.pas
Browse files Browse the repository at this point in the history
  • Loading branch information
lainz committed Sep 10, 2016
1 parent a2c369c commit 2ce553c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions bgracustomdrawn.pas
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,15 @@ TBCDRadioButton = class(TCDRadioButton)
{ TBCDPanel }

TBCDPanel = class(TPanel)

private
FDarkTheme: boolean;
procedure SetFDartTheme(AValue: boolean);
procedure SetFDarkTheme(AValue: boolean);
protected
procedure Paint; override;
public
constructor Create(TheOwner: TComponent); override;
published
property DarkTheme: boolean read FDarkTheme write SetFDartTheme default True;
property DarkTheme: boolean read FDarkTheme write SetFDarkTheme default True;
published
property Align;
property Alignment;
Expand Down Expand Up @@ -179,7 +178,7 @@ procedure Register;

{ TBCDPanel }

procedure TBCDPanel.SetFDartTheme(AValue: boolean);
procedure TBCDPanel.SetFDarkTheme(AValue: boolean);
begin
if FDarkTheme = AValue then
Exit;
Expand Down

0 comments on commit 2ce553c

Please sign in to comment.