r14799 - gnucash/trunk/lib/libqof/qof - Fix missing include config.h. Also fix still-used deprecated typedef.

Christian Stimming cstim at cvs.gnucash.org
Tue Sep 5 13:31:14 EDT 2006


Author: cstim
Date: 2006-09-05 13:31:13 -0400 (Tue, 05 Sep 2006)
New Revision: 14799
Trac: http://svn.gnucash.org/trac/changeset/14799

Modified:
   gnucash/trunk/lib/libqof/qof/qofbookmerge.c
Log:
Fix missing include config.h. Also fix still-used deprecated typedef.

Modified: gnucash/trunk/lib/libqof/qof/qofbookmerge.c
===================================================================
--- gnucash/trunk/lib/libqof/qof/qofbookmerge.c	2006-09-05 15:50:29 UTC (rev 14798)
+++ gnucash/trunk/lib/libqof/qof/qofbookmerge.c	2006-09-05 17:31:13 UTC (rev 14799)
@@ -21,6 +21,7 @@
  *                                                                   *
  ********************************************************************/
 
+#include "config.h"
 #include <glib.h>
 #include "qof.h"
 
@@ -413,7 +414,7 @@
 	QofBookMergeData *mergeData;
 
 	g_return_if_fail(user_data != NULL);
-	mergeData = (qof_book_mergeData*)user_data;
+	mergeData = (QofBookMergeData*)user_data;
 	g_return_if_fail(targetEnt != NULL);
 	mergeData->targetList = g_slist_prepend(mergeData->targetList,targetEnt);
 }



More information about the gnucash-changes mailing list