minor cleanup

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@730 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Linas Vepstas 1998-03-25 08:54:31 +00:00
parent a57fd9fd06
commit 33dcb12eae
2 changed files with 6 additions and 4 deletions

View File

@ -153,7 +153,7 @@ struct _BasicCell {
const char *old, const char *old,
const char *add, const char *add,
const char *new); const char *new);
const char * (*leave_cell) (struct _BasicCell *, const char * (*leave_cell) (BasicCell *,
const char * current); const char * current);
/* private, GUI-specific callbacks */ /* private, GUI-specific callbacks */

View File

@ -58,7 +58,9 @@ struct _Locator {
typedef struct _Locator Locator; typedef struct _Locator Locator;
typedef struct _Table { typedef struct _Table Table;
struct _Table {
/* The number of "physical" rows/cols is the number /* The number of "physical" rows/cols is the number
* of displayed one-line gui rows/cols in the table. * of displayed one-line gui rows/cols in the table.
@ -81,7 +83,7 @@ typedef struct _Table {
/* callback that is called when the cursor is moved */ /* callback that is called when the cursor is moved */
/* hack alert -- this should be a callback list, actually */ /* hack alert -- this should be a callback list, actually */
void (*move_cursor) (struct _Table *, void *client_data); void (*move_cursor) (Table *, void *client_data);
void * client_data; void * client_data;
/* string values for each cell, /* string values for each cell,
@ -118,7 +120,7 @@ typedef struct _Table {
Widget table_widget; /* the XbaeMatrix */ Widget table_widget; /* the XbaeMatrix */
Widget next_tab_group; /* where to traverse in the end */ Widget next_tab_group; /* where to traverse in the end */
} Table; };
Table * xaccMallocTable (void); Table * xaccMallocTable (void);