diff options
author | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2007-06-08 14:51:45 +0000 |
---|---|---|
committer | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2007-06-08 14:51:45 +0000 |
commit | ec57709a762e6c75651b3569c7ce9962b045f2d1 (patch) | |
tree | 4639ecc00f1b1d3b9fcd6a4e5f2435e8a2f91e0a /gui | |
parent | b59ae1fdceaf90c7ee9db5d8bce6a875764cb089 (diff) | |
download | fpGUI-ec57709a762e6c75651b3569c7ce9962b045f2d1.tar.xz |
Moved the TColor declaration to GFX code
Diffstat (limited to 'gui')
-rw-r--r-- | gui/fpgui.pas | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gui/fpgui.pas b/gui/fpgui.pas index 22fcfcc9..0a39bf42 100644 --- a/gui/fpgui.pas +++ b/gui/fpgui.pas @@ -48,8 +48,6 @@ uses // ,Types ; -type - TColor = type LongWord; const @@ -96,7 +94,7 @@ type // The following flags are used for styles TFButtonFlags = set of (btnIsEmbedded, btnIsDefault, btnIsPressed, - btnIsSelected, btnHasFocus); + btnIsSelected, btnHasFocus, btnHasParentColor); TFCheckboxFlags = set of (cbIsPressed, cbHasFocus, cbIsEnabled, cbIsChecked); |