summaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graeme@mastermaths.co.za>2010-10-15 12:05:27 +0200
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2010-10-15 12:05:27 +0200
commit2a339e9f834b8641be87cf2d518a9e5a47752dec (patch)
treebe7d53b76dccd0e023cfd99e8696d9191ee8b1ee /src/gui
parentc0533e4dd6decd6049bcd8ef04b66fa6f743bfd0 (diff)
downloadfpGUI-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.pas9
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