im.pidgin.pidgin: 83367f8f60af4ebb6636d5aa3e3eed63fc7e49b8
datallah at pidgin.im
datallah at pidgin.im
Mon Nov 26 01:35:43 EST 2007
-----------------------------------------------------------------
Revision: 83367f8f60af4ebb6636d5aa3e3eed63fc7e49b8
Ancestor: 41c1eba01a2c9fe574f5c3b0c4a2a6ee0c9955b0
Author: datallah at pidgin.im
Date: 2007-11-26T06:30:57
Branch: im.pidgin.pidgin
Modified files:
pidgin/gtkscrollbook.c
ChangeLog:
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.
-------------- next part --------------
============================================================
--- pidgin/gtkscrollbook.c db63fdbc4349d775cf0b5a9e9c1bc4479aa5e03b
+++ pidgin/gtkscrollbook.c ae0527657ed6d97d2b6b4a560aba8dda7467e608
@@ -192,7 +192,9 @@ pidgin_scroll_book_forall(GtkContainer *
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 @@ pidgin_scroll_book_forall(GtkContainer *
(*callback)(scroll_book->notebook, callback_data);
}
+#if 0
children = scroll_book->children;
while (children) {
@@ -212,6 +215,7 @@ pidgin_scroll_book_forall(GtkContainer *
children = children->next;
(*callback)(child, callback_data);
}
+#endif
}
static void
More information about the Commits
mailing list