about summary refs log tree commit diff stats
path: root/src/xmpp
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-09-26 00:06:50 +0100
committerJames Booth <boothj5@gmail.com>2014-09-26 00:06:50 +0100
commit0b2a1a1bc7247dd41c63e09a84f31211b8d7374b (patch)
tree8480f85f6ef54398222a35b31305950970d97959 /src/xmpp
parent0afdbfaf03d64522356b0a0abe178ae236057e7e (diff)
downloadprofani-tty-0b2a1a1bc7247dd41c63e09a84f31211b8d7374b.tar.gz
Renamed autocomplete function to get list
Diffstat (limited to 'src/xmpp')
-rw-r--r--src/xmpp/presence.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xmpp/presence.c b/src/xmpp/presence.c
index 54c9d68c..adbb21fb 100644
--- a/src/xmpp/presence.c
+++ b/src/xmpp/presence.c
@@ -142,7 +142,7 @@ _presence_subscription(const char * const jid, const jabber_subscr_t action)
 static GSList *
 _presence_get_subscription_requests(void)
 {
-    return autocomplete_get_list(sub_requests_ac);
+    return autocomplete_create_list(sub_requests_ac);
 }
 
 static gint
@@ -167,7 +167,7 @@ static gboolean
 _presence_sub_request_exists(const char * const bare_jid)
 {
     gboolean result = FALSE;
-    GSList *requests_p = autocomplete_get_list(sub_requests_ac);
+    GSList *requests_p = autocomplete_create_list(sub_requests_ac);
     GSList *requests = requests_p;
 
     while (requests != NULL) {