[Gnucash-changes] r12236 - gnucash/trunk - need to #include gkeyfile.h if we don't have glib26.

Derek Atkins warlord at cvs.gnucash.org
Mon Jan 2 17:32:19 EST 2006


Author: warlord
Date: 2006-01-02 17:32:18 -0500 (Mon, 02 Jan 2006)
New Revision: 12236
Trac: http://svn.gnucash.org/trac/changeset/12236

Modified:
   gnucash/trunk/ChangeLog
   gnucash/trunk/src/gnome-utils/gnc-tree-view-account.c
   gnucash/trunk/src/gnome/gnc-plugin-page-budget.c
Log:
need to #include gkeyfile.h if we don't have glib26.

	* src/gnome-utils/gnc-tree-view-account.c:
	* src/gnome/gnc-plugin-page-budget.c:
	  need to #include gkeyfile.h if we don't have glib26.



Modified: gnucash/trunk/ChangeLog
===================================================================
--- gnucash/trunk/ChangeLog	2006-01-02 21:14:31 UTC (rev 12235)
+++ gnucash/trunk/ChangeLog	2006-01-02 22:32:18 UTC (rev 12236)
@@ -1,3 +1,9 @@
+2006-01-02  Derek Atkine  <derek at ihtfp.com>
+
+	* src/gnome-utils/gnc-tree-view-account.c:
+	* src/gnome/gnc-plugin-page-budget.c:
+	  need to #include gkeyfile.h if we don't have glib26.
+
 2006-01-02  David Hampton  <hampton at employees.org>
 
 	* src/gnome-utils/gnc-tree-view.c: Use the right function to hide

Modified: gnucash/trunk/src/gnome/gnc-plugin-page-budget.c
===================================================================
--- gnucash/trunk/src/gnome/gnc-plugin-page-budget.c	2006-01-02 21:14:31 UTC (rev 12235)
+++ gnucash/trunk/src/gnome/gnc-plugin-page-budget.c	2006-01-02 22:32:18 UTC (rev 12236)
@@ -38,6 +38,10 @@
 #include <glib/gi18n.h>
 #include <glade/glade.h>
 
+#ifndef HAVE_GLIB26
+#include "gkeyfile.h"
+#endif
+
 #include "gnc-plugin-page-register.h"
 #include "gnc-budget.h"
 

Modified: gnucash/trunk/src/gnome-utils/gnc-tree-view-account.c
===================================================================
--- gnucash/trunk/src/gnome-utils/gnc-tree-view-account.c	2006-01-02 21:14:31 UTC (rev 12235)
+++ gnucash/trunk/src/gnome-utils/gnc-tree-view-account.c	2006-01-02 22:32:18 UTC (rev 12236)
@@ -28,6 +28,10 @@
 #include <glib/gi18n.h>
 #include <string.h>
 
+#ifndef HAVE_GLIB26
+#include "gkeyfile.h"
+#endif
+
 #include "gnc-tree-view.h"
 #include "gnc-tree-model-account.h"
 #include "gnc-tree-model-account-types.h"



More information about the gnucash-changes mailing list