mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
some trivia left over from long ago.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@917 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
92d0d8c74e
commit
4339e2a921
@ -140,6 +140,7 @@ struct _BasicCell {
|
||||
char input_output; /* zero if output-only */
|
||||
int bg_color; /* background color, ARGB format */
|
||||
int fg_color; /* forground (text) color ARGB format */
|
||||
/* hack alert -- add support for e.g. bold fonts !?!?! */
|
||||
|
||||
char * value; /* current value */
|
||||
unsigned int changed; /* 2^32-1 if value modified */
|
||||
|
@ -334,8 +334,8 @@ xaccTableResize (Table * table,
|
||||
new_phys_cols,
|
||||
(table->bg_colors),
|
||||
int,
|
||||
(0xffffff),
|
||||
(int)); /* no-op */
|
||||
(0xffffff), /* white */
|
||||
(int)); /* no-op */
|
||||
|
||||
/* resize the foreground color array (black text) */
|
||||
RESIZE_ARR ((table->num_phys_rows),
|
||||
@ -344,8 +344,8 @@ xaccTableResize (Table * table,
|
||||
new_phys_cols,
|
||||
(table->fg_colors),
|
||||
int,
|
||||
(0x0),
|
||||
(int)); /* no-op */
|
||||
(0x0), /* black */
|
||||
(int)); /* no-op */
|
||||
|
||||
/* we are done with the physical dimensions.
|
||||
* record them for posterity. */
|
||||
|
Loading…
Reference in New Issue
Block a user