From 9e9ceb6320bc71d609b50cba24b8feade5a6517c Mon Sep 17 00:00:00 2001 From: Neil Williams Date: Sun, 13 Nov 2005 23:44:40 +0000 Subject: [PATCH] Remove deprecated SAXv1 function. Close bug 319559 git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@11923 57a11ea4-9604-0410-9ed3-97b8803252fd --- ChangeLog | 5 +++++ src/backend/file/sixtp.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) 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);