summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorTravis Reitter <travis.reitter@collabora.co.uk>2011-03-10 15:11:27 -0800
committerTravis Reitter <travis.reitter@collabora.co.uk>2011-03-10 17:19:24 -0800
commitb2a60c1f8bc8d032ce99a4bd1e7ec53106da9c63 (patch)
treec1cd73644c18d6d7247d14b3316695a4e9a4ceca /tools
parent4cbdbf9b30095f5e5de3378e23f80c94810e829e (diff)
Rename Groupable -> GroupDetails
Helps bgo#642513 - Folks "Owner" interfaces are awkwardly-named
Diffstat (limited to 'tools')
-rw-r--r--tools/import-pidgin.vala6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/import-pidgin.vala b/tools/import-pidgin.vala
index 5387f4b..01ed9ae 100644
--- a/tools/import-pidgin.vala
+++ b/tools/import-pidgin.vala
@@ -145,13 +145,13 @@ 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 Groupable))
+ if (persona == null || !(persona is GroupDetails))
continue;
try
{
- Groupable groupable = (Groupable) persona;
- yield groupable.change_group (group_name, true);
+ GroupDetails group_details = (GroupDetails) persona;
+ yield group_details.change_group (group_name, true);
}
catch (GLib.Error e)
{