summaryrefslogtreecommitdiff
path: root/libpurple/roomlist.c
diff options
context:
space:
mode:
authorElliott Sales de Andrade <qulogic@pidgin.im>2019-08-06 19:15:13 -0400
committerElliott Sales de Andrade <qulogic@pidgin.im>2019-08-06 19:15:13 -0400
commitc45493b564db124d927441339d4a6c39dff9e8b5 (patch)
treeda2468ef849538c1fd5dd55dd878f6e224b5e9a4 /libpurple/roomlist.c
parenta74e0bc365c453598e99a7bfd94e4d27f21f7297 (diff)
downloadpidgin-c45493b564db124d927441339d4a6c39dff9e8b5.tar.gz
Rename *_GET_*_IFACE to more standard *_GET_IFACE.
Two sed's of `s/_GET_\([A-Za-z0-9_]\+\)_IFACE/_\1_GET_IFACE/g` and `s/\(PURPLE_PROTOCOL_IMPLEMENTS.\+\)_IFACE/\1/g`, plus a small fix in `PURPLE_PROTOCOL_IMPLEMENTS`.
Diffstat (limited to 'libpurple/roomlist.c')
-rw-r--r--libpurple/roomlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpurple/roomlist.c b/libpurple/roomlist.c
index 94a9cec881..aeaeaf4bbc 100644
--- a/libpurple/roomlist.c
+++ b/libpurple/roomlist.c
@@ -393,7 +393,7 @@ PurpleRoomlist *purple_roomlist_new(PurpleAccount *account)
g_return_val_if_fail(PURPLE_IS_PROTOCOL(protocol), NULL);
- if (PURPLE_PROTOCOL_IMPLEMENTS(protocol, FACTORY_IFACE, roomlist_new))
+ if (PURPLE_PROTOCOL_IMPLEMENTS(protocol, FACTORY, roomlist_new))
list = purple_protocol_factory_iface_roomlist_new(protocol, account);
else
list = g_object_new(PURPLE_TYPE_ROOMLIST,