summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPhilip Withnall <philip.withnall@collabora.co.uk>2010-09-13 14:10:06 +0100
committerPhilip Withnall <philip.withnall@collabora.co.uk>2010-09-13 14:13:30 +0100
commit74c267a0046f4dd067984def2456f25abc2f9d94 (patch)
tree88cd91838939e80aff0a502b508dc7eba4b274c7 /tools
parent6642e5306c0dd60476ed5b90741f3b318ffac450 (diff)
Rename Groups interface to Groupable
Helps: bgo#627397
Diffstat (limited to 'tools')
-rw-r--r--tools/import-pidgin.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/import-pidgin.vala b/tools/import-pidgin.vala
index 48a6170..f224bcd 100644
--- a/tools/import-pidgin.vala
+++ b/tools/import-pidgin.vala
@@ -136,12 +136,12 @@ public class Folks.Importers.Pidgin : Folks.Importer
/* Skip the persona if creating them failed or if they don't support
* groups. */
- if (persona == null || !(persona is Groups))
+ if (persona == null || !(persona is Groupable))
continue;
try
{
- Groups groupable = (Groups) persona;
+ Groupable groupable = (Groupable) persona;
yield groupable.change_group (group_name, true);
}
catch (GLib.Error e)