fixes from Andrew Arensburger

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@1589 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Linas Vepstas
1999-01-09 08:41:41 +00:00
parent a6bb51de2f
commit 3ba6142f16
5 changed files with 6 additions and 6 deletions

View File

@@ -36,7 +36,7 @@
*
* MEMBERS:
* The input_output member controls how the cell accepts
* input, and whether it displays it's value. It is a
* input, and whether it displays its value. It is a
* a flag of OR-ed together values. Flag bits include:
*
* XACC_CELL_ALLOW_INPUT accept keyboard & mouse

View File

@@ -462,7 +462,7 @@ doMoveCursor (Table *table, int new_phys_row, int new_phys_col, int do_move_gui)
if (new_phys_col >= table->num_phys_cols) return;
/* ok, we now have a valid position. Find the new cursor to use,
* and initialize it's cells */
* and initialize its cells */
curs = table->handlers[new_virt_row][new_virt_col];
table->current_cursor = curs;
@@ -633,7 +633,7 @@ xaccRefreshHeader (Table *table)
/* verifyCursorPosition checks the location of the cursor
* with respect to a row/column position, and repositions
* the cursor if necessary. This includes saving any uncomited
* data in the old cursor, and then moving the cursor and it's
* data in the old cursor, and then moving the cursor and its
* GUI.
*/

View File

@@ -173,7 +173,7 @@ struct _Table {
* cock it up with a #defined thingy that the "derived class"
* can specify.
*/
TABLE_PRIVATE_DATA;
TABLE_PRIVATE_DATA
};

View File

@@ -642,7 +642,7 @@ xaccCreateTable (Table *table, Widget parent, char * name)
/* if any of the cells have GUI specific components that need
* initialization, initialize them now. The realize() callback
* on the cursor cell is how we inform the cell handler that
* now is the time to initialize it's GUI. */
* now is the time to initialize its GUI. */
void
xaccCreateCursor (Table *table, CellBlock *curs)

View File

@@ -100,5 +100,5 @@ void xaccRefreshTableGUI (Table *);
*/
void xaccRefreshCursorGUI (Table *);
#endif __XACC_TABLE_MOTIF_H__
#endif /* __XACC_TABLE_MOTIF_H__ */
/* ================== end of file ======================= */