diff options
author | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2010-10-15 12:05:27 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2010-10-15 12:05:27 +0200 |
commit | 2a339e9f834b8641be87cf2d518a9e5a47752dec (patch) | |
tree | be7d53b76dccd0e023cfd99e8696d9191ee8b1ee /src/gui | |
parent | c0533e4dd6decd6049bcd8ef04b66fa6f743bfd0 (diff) | |
download | fpGUI-2a339e9f834b8641be87cf2d518a9e5a47752dec.tar.xz |
fpg_edit: removed pointless property declarations
Those properties are exactly the same visibility as inherited
classes, so no point in simply listing them again.
TextColor was the exception, it was public, so you can't decrease
the visibility in descendants.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/fpg_edit.pas | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/gui/fpg_edit.pas b/src/gui/fpg_edit.pas index 3d72fa66..80558c3a 100644 --- a/src/gui/fpg_edit.pas +++ b/src/gui/fpg_edit.pas @@ -229,16 +229,7 @@ type property HideSelection; // property MaxLength; { probably MaxValue and MinValue } property TabOrder; - property TextColor; property ShowThousand: boolean read FShowThousand write FShowThousand default False; - property OnChange; - property OnEnter; - property OnExit; - property OnKeyPress; - property OnMouseEnter; - property OnMouseExit; - property OnPaint; - property OnShowHint; public constructor Create(AOwner: TComponent); override; published |