[Goodies-commits] r7847 - in xfmpc/branches/xfmpc-plugins: . src

Mike Massonnet mmassonnet at xfce.org
Mon Jul 27 01:00:54 CEST 2009


Author: mmassonnet
Date: 2009-07-26 23:00:54 +0000 (Sun, 26 Jul 2009)
New Revision: 7847

Modified:
   xfmpc/branches/xfmpc-plugins/ChangeLog
   xfmpc/branches/xfmpc-plugins/src/Makefile.am
   xfmpc/branches/xfmpc-plugins/src/paned-interface.vala
Log:
Drop Gee requirement (forgot to update a Makefile.am)

Modified: xfmpc/branches/xfmpc-plugins/ChangeLog
===================================================================
--- xfmpc/branches/xfmpc-plugins/ChangeLog	2009-07-26 20:49:25 UTC (rev 7846)
+++ xfmpc/branches/xfmpc-plugins/ChangeLog	2009-07-26 23:00:54 UTC (rev 7847)
@@ -1,5 +1,11 @@
 2009-07-26	Mike Massonnet <mmassonnet at xfce.org>
 
+Drop Gee requirement (forgot to update a Makefile.am)
+
+- Also update PanedInterface to use Preferences.get_default.
+
+2009-07-26	Mike Massonnet <mmassonnet at xfce.org>
+
 Some fixes here and there
 
 - MainWindow had an unused preferences1 object.

Modified: xfmpc/branches/xfmpc-plugins/src/Makefile.am
===================================================================
--- xfmpc/branches/xfmpc-plugins/src/Makefile.am	2009-07-26 20:49:25 UTC (rev 7846)
+++ xfmpc/branches/xfmpc-plugins/src/Makefile.am	2009-07-26 23:00:54 UTC (rev 7847)
@@ -30,7 +30,7 @@
 
 BUILT_SOURCES =	vala.stamp
 vala.stamp: $(xfmpc_VALASOURCES)
-	$(VALAC) --vapidir=. --pkg=gee-1.0 --pkg=gmodule-2.0 --pkg=libxfcegui4-1.0 --pkg=config --pkg=mpdclient --pkg=xfce-arrow-button $^ -C -H xfmpc.h
+	$(VALAC) --vapidir=. --pkg=gmodule-2.0 --pkg=libxfcegui4-1.0 --pkg=config --pkg=mpdclient --pkg=xfce-arrow-button $^ -C -H xfmpc.h
 	touch $@
 
 endif
@@ -45,7 +45,6 @@
 xfmpc_CFLAGS =								\
 	@GTK_CFLAGS@							\
 	@GMODULE_CFLAGS@						\
-	@GEE_CFLAGS@							\
 	@LIBXFCEGUI4_CFLAGS@						\
 	@LIBXFCE4UTIL_CFLAGS@						\
 	@LIBMPD_CFLAGS@							\
@@ -54,7 +53,6 @@
 xfmpc_LDADD =								\
 	@GTK_LIBS@							\
 	@GMODULE_LIBS@ 							\
-	@GEE_LIBS@							\
 	@LIBXFCEGUI4_LIBS@						\
 	@LIBXFCE4UTIL_LIBS@						\
 	@LIBMPD_LIBS@							\

Modified: xfmpc/branches/xfmpc-plugins/src/paned-interface.vala
===================================================================
--- xfmpc/branches/xfmpc-plugins/src/paned-interface.vala	2009-07-26 20:49:25 UTC (rev 7846)
+++ xfmpc/branches/xfmpc-plugins/src/paned-interface.vala	2009-07-26 23:00:54 UTC (rev 7847)
@@ -30,7 +30,7 @@
 		private Gtk.Notebook notebook;
 
 		public PanedInterface () {
-			preferences = Xfmpc.Preferences.get ();
+			preferences = Xfmpc.Preferences.get_default ();
 			plugin_loader = Xfmpc.PluginLoader.get_default ();
 
 			notebook = new Gtk.Notebook ();




More information about the Goodies-commits mailing list