changeset 21641:ee7638c696f1

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.
author Daniel Atallah <daniel.atallah@gmail.com>
date Mon, 26 Nov 2007 06:30:57 +0000
parents ed57eeb486d5
children 372711300f57
files pidgin/gtkscrollbook.c
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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