diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-09-29 07:34:39 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-09-29 07:34:39 +0000 |
commit | 835d028dc90b109961e7685857a4c230d3b76112 (patch) | |
tree | 035b16e53b7a7083a9c292ff769a7fb7ce7e4a33 /deskutils/gtodo/files/patch-src::callback.c | |
parent | Actually install an mplayerplug-in.conf file if one doesn't exist. This (diff) |
Add gToDo, a todo list application for the GNOME desktop. The goal of the
program is to be simple and easy to use. The program is made to fill up the
gap of amissing gtk+-2.0 standalone todo list.
PR: 57341
Submitted by: Jeremy Messenger <mezz7@cox.net>
Diffstat (limited to 'deskutils/gtodo/files/patch-src::callback.c')
-rw-r--r-- | deskutils/gtodo/files/patch-src::callback.c | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/deskutils/gtodo/files/patch-src::callback.c b/deskutils/gtodo/files/patch-src::callback.c new file mode 100644 index 000000000000..87b98f82dca1 --- /dev/null +++ b/deskutils/gtodo/files/patch-src::callback.c @@ -0,0 +1,32 @@ +--- src/callback.c.orig Mon Sep 29 01:45:56 2003 ++++ src/callback.c Mon Sep 29 01:48:27 2003 +@@ -26,8 +26,8 @@ + + if(cur != root) + { +- xmlFreeNode(cur); + xmlUnlinkNode(cur); ++ xmlFreeNode(cur); + gtk_list_store_remove(mw.list, &iter); + } + else{ +@@ -167,8 +167,8 @@ + if(xmlStrEqual(temp, (const xmlChar *)tm)) + { + g_signal_handler_block(mw.option, shand); +- xmlFreeNode(cur); + xmlUnlinkNode(cur); ++ xmlFreeNode(cur); + read_categorys(); + g_signal_handler_unblock(mw.option, shand); + cur = NULL; +@@ -302,8 +302,8 @@ + cur = get_id_node(category, value); + if(cur != root) + { +- xmlFreeNode(cur); + xmlUnlinkNode(cur); ++ xmlFreeNode(cur); + //gtk_list_store_remove(mw.list, &nextiter); + } + else{ |