diff options
author | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2008-02-01 21:52:46 +0000 |
---|---|---|
committer | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2008-02-01 21:52:46 +0000 |
commit | 214510635fcf4c37bef52ee7be7ab1be280e9d55 (patch) | |
tree | 1fce7a4bd704fe6817819d28d4352c94f8334747 /examples | |
parent | dc4c89ecd2e6c733b73f3d185d9ab421663e2bb0 (diff) | |
download | fpGUI-214510635fcf4c37bef52ee7be7ab1be280e9d55.tar.xz |
* Fixed old Color property to TextColor.
* Created new TfpgComponent class with TagPointer property.
TagPointer is like TComponent.Tag but just a pointer instead
of Integer.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/gui/alignment/aligntest.lpr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/gui/alignment/aligntest.lpr b/examples/gui/alignment/aligntest.lpr index 60d98ba5..a13b5ffd 100644 --- a/examples/gui/alignment/aligntest.lpr +++ b/examples/gui/alignment/aligntest.lpr @@ -78,7 +78,7 @@ begin lblClient.Align := alClient; lblNone := CreateLabel(self, 15, 120, 'Resize the form to see Align in action'); - lblNone.Color := clWhite; + lblNone.TextColor := clWhite; lblNone.BackgroundColor := clBlack; end; |