modernize the infrastructure for debugging

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@1427 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Linas Vepstas
1998-12-06 08:25:40 +00:00
parent 78e1d0cf72
commit 5075aa918b
2 changed files with 8 additions and 4 deletions

View File

@@ -34,6 +34,8 @@
/** PROTOTYPES ******************************************************/
static void qfInsertTextRec( QuickFill *qf, const char * text, int depth );
/* This static indicates the debugging module that this .o belongs to. */
static short module = MOD_LEDGER;
/********************************************************************\
* Because I can't use C++ for this project, doesn't mean that I *
@@ -96,7 +98,7 @@ xaccGetQuickFill( QuickFill *qf, char c )
{
if( qf != NULL )
{
DEBUGCMD(printf(" index = %d\n",CHAR_TO_INDEX(c)));
DEBUG("xaccGetQuickFill(): index = %d\n",CHAR_TO_INDEX(c));
return qf->qf[CHAR_TO_INDEX(c)];
}
else

View File

@@ -51,6 +51,8 @@ static void doRefreshCursorGUI (Table * table, CellBlock *curs, int row, int col
static XrmQuark QPointer, QLeft, QRight, QUp, QDown;
static Boolean haveQuarks = False;
/* This static indicates the debugging module that this .o belongs to. */
static short module = MOD_REGISTER;
/* ==================================================== */
@@ -242,8 +244,8 @@ enterCB (Widget mw, XtPointer cd, XtPointer cb)
rel_row = table->locators[row][col]->phys_row_offset;
rel_col = table->locators[row][col]->phys_col_offset;
DEBUGCMD (printf ("enter %d %d (relrow=%d relcol=%d) cell=%p\n",
row, col, rel_row, rel_col, arr->cells[rel_row][rel_col]));
PINFO("enterCB(): enter %d %d (relrow=%d relcol=%d) cell=%p\n",
row, col, rel_row, rel_col, arr->cells[rel_row][rel_col]);
/* since we are here, there must be a cell handler.
* therefore, we accept entry into the cell by default,
@@ -392,7 +394,7 @@ leaveCB (Widget mw, XtPointer cd, XtPointer cb)
rel_row = table->locators[row][col]->phys_row_offset;
rel_col = table->locators[row][col]->phys_col_offset;
DEBUGCMD (printf ("leave %d %d \n", row, col));
PINFO("leaveCB(): row=%d col=%d \n", row, col);
/* by default, accept whatever the final proposed edit is */
cbs->doit = True;