diff options
author | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2010-09-21 13:21:39 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2010-09-21 14:53:26 +0200 |
commit | d440ddcbb905bd4a7b7260c4e2cbb47a68d6f4e6 (patch) | |
tree | 037a99a1adeb54e5235aa5175f6e5c58b96b08a2 | |
parent | c598ee9ebdc14537d8a6b094e407e01c62dcfcc9 (diff) | |
download | fpGUI-d440ddcbb905bd4a7b7260c4e2cbb47a68d6f4e6.tar.xz |
cl_BaseNamedColor should be a index number, not really a TfpgColor type.
-rw-r--r-- | src/corelib/predefinedcolors.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/predefinedcolors.inc b/src/corelib/predefinedcolors.inc index 1e6c4b54..ae14ff4a 100644 --- a/src/corelib/predefinedcolors.inc +++ b/src/corelib/predefinedcolors.inc @@ -34,7 +34,7 @@ // System named color identifiers. DON'T CHANGE THE ORDER! - cl_BaseNamedColor = TfpgColor($80000000); + cl_BaseNamedColor = $80000000; clWindowBackground = TfpgColor(cl_BaseNamedColor + 1); clBoxColor = TfpgColor(cl_BaseNamedColor + 2); |