From 738b44c867569e53a2da6897d672d8daf1ca8d13 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Tue, 12 Feb 2013 11:26:50 +0000 Subject: [PATCH] tools: Fix ambiguous references to HashTable MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Could have been GLib.HashTable or Xml.HashTable. Caught by Jenkins: https://jenkins.qa.ubuntu.com/view/Raring/view/JHBuild%20Gnome/job/jhbuild-amd64-folks/114/ On further investigation, this was caused by changes to the libxml2 bindings in Vala. Compilation of folks against Vala master now succeeds, so there shouldn’t be any more HashTable failures. --- tools/import-pidgin.vala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/import-pidgin.vala b/tools/import-pidgin.vala index 2240038..f09e693 100644 --- a/tools/import-pidgin.vala +++ b/tools/import-pidgin.vala @@ -1,5 +1,6 @@ /* * Copyright (C) 2010 Collabora Ltd. + * Copyright (C) 2013 Philip Withnall * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by @@ -223,8 +224,7 @@ public class Folks.Importers.Pidgin : Folks.Importer } /* Create or update the relevant Persona */ - HashTable details = - new HashTable (str_hash, str_equal); + var details = new GLib.HashTable (str_hash, str_equal); Value im_addresses_value = Value (typeof (MultiMap)); im_addresses_value.set_object (im_addresses); details.insert ("im-addresses", im_addresses_value); -- 2.7.4