# HG changeset patch # User Daniel Atallah # Date 1196058657 0 # Node ID ee7638c696f1a35ea86708e3f870b6302a49b25b # Parent ed57eeb486d5734b9a500c05d800a4704f1c6994 My previous commit caused the scrollbook's children to be tracked correctly - it turns out that this causes problems because they really aren't the children of the scrollbook, they're the notebook'children. This stuff needs to be revisited. diff -r ed57eeb486d5 -r ee7638c696f1 pidgin/gtkscrollbook.c --- a/pidgin/gtkscrollbook.c Mon Nov 26 05:41:09 2007 +0000 +++ b/pidgin/gtkscrollbook.c Mon Nov 26 06:30:57 2007 +0000 @@ -192,7 +192,9 @@ GtkCallback callback, gpointer callback_data) { +#if 0 GList *children; +#endif PidginScrollBook *scroll_book; g_return_if_fail(GTK_IS_CONTAINER(container)); @@ -204,6 +206,7 @@ (*callback)(scroll_book->notebook, callback_data); } +#if 0 children = scroll_book->children; while (children) { @@ -212,6 +215,7 @@ children = children->next; (*callback)(child, callback_data); } +#endif } static void