changeset 18733:fad7efbb98a6

Add two more missing characters for the HTML dump.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Wed, 01 Aug 2007 21:43:53 +0000
parents a03c8b79f39b
children b5d6e360eca0
files finch/libgnt/gntwm.c
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/finch/libgnt/gntwm.c	Tue Jul 31 12:06:02 2007 +0000
+++ b/finch/libgnt/gntwm.c	Wed Aug 01 21:43:53 2007 +0000
@@ -684,6 +684,8 @@
 		{'j', "&#x2518;"},
 		{'a', "&#x2592;"},
 		{'n', "&#x253c;"},
+		{'w', "&#x252c;"},
+		{'v', "&#x2534;"},
 		{'\0', NULL}
 	};
 
@@ -1150,7 +1152,7 @@
 	GntWM *wm = GNT_WM(obj);
 	GList *list = NULL;
 	g_hash_table_foreach(wm->nodes, accumulate_windows, &list);
-	g_list_foreach(list, gnt_widget_destroy, NULL);
+	g_list_foreach(list, (GFunc)gnt_widget_destroy, NULL);
 	g_list_free(list);
 	g_hash_table_destroy(wm->nodes);
 	wm->nodes = NULL;