[Gnucash-changes] r11923 - gnucash/trunk - Remove deprecated SAXv1 function. Close bug 319559

Neil Williams codehelp at cvs.gnucash.org
Sun Nov 13 18:44:41 EST 2005


Author: codehelp
Date: 2005-11-13 18:44:40 -0500 (Sun, 13 Nov 2005)
New Revision: 11923
Trac: http://svn.gnucash.org/trac/changeset/11923

Modified:
   gnucash/trunk/ChangeLog
   gnucash/trunk/src/backend/file/sixtp.c
Log:
Remove deprecated SAXv1 function. Close bug 319559

Modified: gnucash/trunk/ChangeLog
===================================================================
--- gnucash/trunk/ChangeLog	2005-11-13 23:11:36 UTC (rev 11922)
+++ gnucash/trunk/ChangeLog	2005-11-13 23:44:40 UTC (rev 11923)
@@ -1,5 +1,10 @@
 2005-11-13  Neil Williams <linux at codehelp.co.uk>
 
+	* src/backend/file/sixtp.c : Remove deprecated
+	SAX function. Closes bug #319559.
+
+2005-11-13  Neil Williams <linux at codehelp.co.uk>
+
 	* make-gncuash-potfiles.in : Add a specific
 	call to read one libqof file.
 	* po/POTFILES.in : the updated POTFILES list.

Modified: gnucash/trunk/src/backend/file/sixtp.c
===================================================================
--- gnucash/trunk/src/backend/file/sixtp.c	2005-11-13 23:11:36 UTC (rev 11922)
+++ gnucash/trunk/src/backend/file/sixtp.c	2005-11-13 23:44:40 UTC (rev 11923)
@@ -434,8 +434,8 @@
   /* 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);
   



More information about the gnucash-changes mailing list