diff --git a/ChangeLog b/ChangeLog index a56fb06296..7811187388 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-11-13 Neil Williams + + * src/backend/file/sixtp.c : Remove deprecated + SAX function. Closes bug #319559. + 2005-11-13 Neil Williams * make-gncuash-potfiles.in : Add a specific diff --git a/src/backend/file/sixtp.c b/src/backend/file/sixtp.c index efda1b8da4..9bce0abc77 100644 --- a/src/backend/file/sixtp.c +++ b/src/backend/file/sixtp.c @@ -434,8 +434,8 @@ sixtp_sax_start_handler(void *user_data, /* now allocate the new stack frame and shift to it */ new_frame = sixtp_stack_frame_new( next_parser, g_strdup((char*) name)); - new_frame->line = getLineNumber( pdata->saxParserCtxt ); - new_frame->col = getColumnNumber( pdata->saxParserCtxt ); + new_frame->line = xmlSAX2GetLineNumber( pdata->saxParserCtxt ); + new_frame->col = xmlSAX2GetColumnNumber( pdata->saxParserCtxt ); pdata->stack = g_slist_prepend(pdata->stack, (gpointer) new_frame);