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:
Linas Vepstas 1998-07-26 01:32:18 +00:00
parent 92d0d8c74e
commit 4339e2a921
2 changed files with 5 additions and 4 deletions

View File

@ -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 */

View File

@ -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. */