summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorTravis Reitter <travis.reitter@collabora.co.uk>2013-02-06 21:33:24 -0800
committerTravis Reitter <travis.reitter@collabora.co.uk>2013-02-10 22:02:53 -0800
commit01cc61aca9247a43f5132331a155f00d363e5e7d (patch)
tree53b08f1ea0064977f3489d42cef0d0e726363315 /tools
parenta4759c93833422065f55519780148de4dc914c40 (diff)
Port folks to libgee 0.8.
Added hash_static and equal_static to AbstractFieldDetails. Use AbstractFieldDetails hash_static and equal_static where needed. Fixes: https://bugzilla.gnome.org/show_bug.cgi?id=673918
Diffstat (limited to 'tools')
-rw-r--r--tools/Makefile.am2
-rw-r--r--tools/inspect/Makefile.am2
-rw-r--r--tools/inspect/inspect.vala2
3 files changed, 3 insertions, 3 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am
index 99ac0325..84bcff72 100644
--- a/tools/Makefile.am
+++ b/tools/Makefile.am
@@ -13,7 +13,7 @@ endif
VALAFLAGS = \
$(AM_VALAFLAGS) \
--vapidir=$(top_builddir)/folks \
- --pkg=gee-1.0 \
+ --pkg=gee-0.8 \
--pkg=libxml-2.0 \
--pkg=folks \
--pkg=build-conf \
diff --git a/tools/inspect/Makefile.am b/tools/inspect/Makefile.am
index 947706e4..577e2309 100644
--- a/tools/inspect/Makefile.am
+++ b/tools/inspect/Makefile.am
@@ -5,7 +5,7 @@ VALAFLAGS = \
--pkg=readline \
--pkg=gobject-2.0 \
--pkg=gio-2.0 \
- --pkg=gee-1.0 \
+ --pkg=gee-0.8 \
--pkg=posix \
--pkg=folks \
--pkg=build-conf \
diff --git a/tools/inspect/inspect.vala b/tools/inspect/inspect.vala
index d3a81e08..bd0794b3 100644
--- a/tools/inspect/inspect.vala
+++ b/tools/inspect/inspect.vala
@@ -128,7 +128,7 @@ public class Folks.Inspect.Client : Object
{
Utils.init ();
- this.commands = new HashMap<string, Command> (str_hash, str_equal);
+ this.commands = new HashMap<string, Command> ();
/* Register the commands we support */
/* FIXME: This should be automatic */