Remove deprecated SAXv1 function. Close bug 319559

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@11923 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Neil Williams 2005-11-13 23:44:40 +00:00
parent 3696a99e18
commit 9e9ceb6320
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2005-11-13 Neil Williams <linux@codehelp.co.uk>
* src/backend/file/sixtp.c : Remove deprecated
SAX function. Closes bug #319559.
2005-11-13 Neil Williams <linux@codehelp.co.uk>
* make-gncuash-potfiles.in : Add a specific

View File

@ -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);