# HG changeset patch # User Nathan Walp # Date 1047090823 0 # Node ID ac9756f48544c1d3ad017eb45247deacaa486335 # Parent ada933d434cbb46afd1650998e2e472e62c52597 [gaim-migrate @ 4982] i'll clean this up with a less hackish fix later, but for now it'd be nice to have it un-broken. committer: Tailor Script diff -r ada933d434cb -r ac9756f48544 src/gtkconv.c --- a/src/gtkconv.c Sat Mar 08 01:21:25 2003 +0000 +++ b/src/gtkconv.c Sat Mar 08 02:33:43 2003 +0000 @@ -1986,10 +1986,19 @@ child = child->next) { GtkWidget *item = child->data; + GtkWidget *box; + GList *children; GtkWidget *label; const char *title; - label = gtk_bin_get_child(GTK_BIN(item)); + box = gtk_bin_get_child(GTK_BIN(item)); + + children = gtk_container_get_children(GTK_CONTAINER(box)); + + if(g_list_length(children) < 2) + continue; + + label = g_list_nth_data(children, 1); if (!GTK_IS_LABEL(label)) continue;