# HG changeset patch # User Sadrul Habib Chowdhury # Date 1162080932 0 # Node ID b1650510f4b8ea78c6f5b22364d8baf5978602dd # Parent 8d1a1a6c57d9080d1a5a7c281cbc3187f5c6c528 [gaim-migrate @ 17614] a couple of minor fixes committer: Tailor Script diff -r 8d1a1a6c57d9 -r b1650510f4b8 console/libgnt/gntbox.c --- a/console/libgnt/gntbox.c Sat Oct 28 23:55:29 2006 +0000 +++ b/console/libgnt/gntbox.c Sun Oct 29 00:15:32 2006 +0000 @@ -704,8 +704,6 @@ GntWidget *wid; int width, height; - g_return_if_fail(GNT_WIDGET(box)->parent == NULL); - for (iter = box->list; iter; iter = iter->next) { GntWidget *w = iter->data; diff -r 8d1a1a6c57d9 -r b1650510f4b8 console/libgnt/gntmenu.c --- a/console/libgnt/gntmenu.c Sat Oct 28 23:55:29 2006 +0000 +++ b/console/libgnt/gntmenu.c Sun Oct 29 00:15:32 2006 +0000 @@ -210,7 +210,7 @@ } if (item) { - if (GNT_MENUITEM_CHECK(item)) + if (GNT_IS_MENUITEM_CHECK(item)) gnt_menu_toggled(GNT_TREE(widget), item); else menuitem_activate(menu, item);