mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-20 20:16:21 +00:00
Allow previous autocompletion with shift tab
This commit is contained in:
@@ -505,7 +505,7 @@ cons_show_wins(gboolean unread)
|
||||
}
|
||||
|
||||
void
|
||||
cons_show_room_invites(GSList *invites)
|
||||
cons_show_room_invites(GList *invites)
|
||||
{
|
||||
cons_show("");
|
||||
if (invites == NULL) {
|
||||
@@ -514,7 +514,7 @@ cons_show_room_invites(GSList *invites)
|
||||
cons_show("Chat room invites, use /join or /decline commands:");
|
||||
while (invites) {
|
||||
cons_show(" %s", invites->data);
|
||||
invites = g_slist_next(invites);
|
||||
invites = g_list_next(invites);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -608,17 +608,17 @@ cons_show_caps(const char *const fulljid, resource_presence_t presence)
|
||||
void
|
||||
cons_show_received_subs(void)
|
||||
{
|
||||
GSList *received = presence_get_subscription_requests();
|
||||
GList *received = presence_get_subscription_requests();
|
||||
if (received == NULL) {
|
||||
cons_show("No outstanding subscription requests.");
|
||||
} else {
|
||||
cons_show("Outstanding subscription requests from:",
|
||||
g_slist_length(received));
|
||||
g_list_length(received));
|
||||
while (received) {
|
||||
cons_show(" %s", received->data);
|
||||
received = g_slist_next(received);
|
||||
received = g_list_next(received);
|
||||
}
|
||||
g_slist_free_full(received, g_free);
|
||||
g_list_free_full(received, g_free);
|
||||
}
|
||||
|
||||
cons_alert();
|
||||
|
||||
Reference in New Issue
Block a user