From: <sa...@us...> - 2006-10-29 00:15:43
|
Revision: 17614 http://svn.sourceforge.net/gaim/?rev=17614&view=rev Author: sadrul Date: 2006-10-28 17:15:32 -0700 (Sat, 28 Oct 2006) Log Message: ----------- a couple of minor fixes Modified Paths: -------------- trunk/console/libgnt/gntbox.c trunk/console/libgnt/gntmenu.c Modified: trunk/console/libgnt/gntbox.c =================================================================== --- trunk/console/libgnt/gntbox.c 2006-10-28 23:55:29 UTC (rev 17613) +++ trunk/console/libgnt/gntbox.c 2006-10-29 00:15:32 UTC (rev 17614) @@ -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; Modified: trunk/console/libgnt/gntmenu.c =================================================================== --- trunk/console/libgnt/gntmenu.c 2006-10-28 23:55:29 UTC (rev 17613) +++ trunk/console/libgnt/gntmenu.c 2006-10-29 00:15:32 UTC (rev 17614) @@ -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); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |