summaryrefslogtreecommitdiff
path: root/finch/gntroomlist.c
diff options
context:
space:
mode:
authorGary Kramlich <grim@reaperworld.com>2021-05-30 17:20:19 -0500
committerGary Kramlich <grim@reaperworld.com>2021-05-30 17:20:19 -0500
commited17a1ce0f14859ea402bf69374ce9ebb2a3ba21 (patch)
treee5fc99a84be5982c7fd1beff32ebaac2e5c4e598 /finch/gntroomlist.c
parentd0929fc0bd6bd05d2d4545d9be6fe9a96f4006d0 (diff)
downloadpidgin-ed17a1ce0f14859ea402bf69374ce9ebb2a3ba21.tar.gz
Replace purple_roomlist_[gs]et_ui_data with g_object_[gs]et_data
Testing Done: Verified the room list still works in Pidgin but couldn't test Finch as I couldn't add an account. Reviewed at https://reviews.imfreedom.org/r/687/
Diffstat (limited to 'finch/gntroomlist.c')
-rw-r--r--finch/gntroomlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/finch/gntroomlist.c b/finch/gntroomlist.c
index 42750db5b3..ff244ca5fe 100644
--- a/finch/gntroomlist.c
+++ b/finch/gntroomlist.c
@@ -335,7 +335,7 @@ fl_show_with_account(PurpleAccount *account)
static void
fl_create(PurpleRoomlist *list)
{
- purple_roomlist_set_ui_data(list, &froomlist);
+ g_object_set_data(G_OBJECT(list), "finch-ui", &froomlist);
setup_roomlist(NULL);
update_roomlist(list);
}