pidgin/pidgin

Remove the statusbox from gtkblist

2021-12-31, Gary Kramlich
a197d870fc0b
Parents 3cd912162649
Children 4fd76e8dedf8
Remove the statusbox from gtkblist

Testing Done:
Ran and verified that the everything worked with just the statusbox in the conversation window.

Reviewed at https://reviews.imfreedom.org/r/1207/
--- a/pidgin/gtkblist.c Fri Dec 31 00:44:03 2021 -0600
+++ b/pidgin/gtkblist.c Fri Dec 31 02:51:49 2021 -0600
@@ -4743,12 +4743,6 @@
gtk_box_pack_start(GTK_BOX(gtkblist->vbox),
GTK_WIDGET(priv->error_scrollbook), FALSE, FALSE, 0);
- /* Add the statusbox */
- gtkblist->statusbox = pidgin_status_box_new();
- gtk_box_pack_start(GTK_BOX(gtkblist->vbox), gtkblist->statusbox, FALSE, TRUE, 0);
- gtk_widget_set_name(gtkblist->statusbox, "pidgin_blist_statusbox");
- gtk_widget_show(gtkblist->statusbox);
-
/* Update some dynamic things */
pidgin_blist_update_sort_methods();
--- a/pidgin/gtkblist.h Fri Dec 31 00:44:03 2021 -0600
+++ b/pidgin/gtkblist.h Fri Dec 31 02:51:49 2021 -0600
@@ -101,8 +101,6 @@
GCallback headline_callback;
gpointer headline_data;
GDestroyNotify headline_destroy;
-
- GtkWidget *statusbox;
};
G_BEGIN_DECLS