diff options
author | Dave Camp <dave@ximian.com> | 2003-11-17 05:15:36 +0000 |
---|---|---|
committer | Dave Camp <campd@src.gnome.org> | 2003-11-17 05:15:36 +0000 |
commit | 033cd581ccdfd8bfb408eeec0e02047aba01eedc (patch) | |
tree | e72b76486493a5e0704ed16993f2dfca0a8a8ec9 | |
parent | dce76cb910f383a6cf8ec1bb75f66a124a39226b (diff) | |
download | nautilus-033cd581ccdfd8bfb408eeec0e02047aba01eedc.tar.gz |
NULL out the keyword fields. Patch from Kiran Kumar Immidi
2003-11-17 Dave Camp <dave@ximian.com>
* components/emblem/nautilus-emblem-view.c:
(nautilus_emblem_view_drag_received_cb): NULL out the keyword
fields. Patch from Kiran Kumar Immidi <kimmidi@novell.com>.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | components/emblem/nautilus-emblem-view.c | 3 |
2 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2003-11-17 Dave Camp <dave@ximian.com> + + * components/emblem/nautilus-emblem-view.c: + (nautilus_emblem_view_drag_received_cb): NULL out the keyword + fields. Patch from Kiran Kumar Immidi <kimmidi@novell.com>. + 2003-11-16 Dave Camp <dave@ximian.com> * libnautilus-private/nautilus-file.c: diff --git a/components/emblem/nautilus-emblem-view.c b/components/emblem/nautilus-emblem-view.c index 6fe77d3e2..a19219214 100644 --- a/components/emblem/nautilus-emblem-view.c +++ b/components/emblem/nautilus-emblem-view.c @@ -729,6 +729,7 @@ nautilus_emblem_view_drag_received_cb (GtkWidget *widget, emblem = g_new (Emblem, 1); emblem->uri = uri; emblem->name = NULL; /* created later on by the user */ + emblem->keyword = NULL; emblem->pixbuf = pixbuf; emblems = g_slist_prepend (emblems, emblem); @@ -769,6 +770,7 @@ nautilus_emblem_view_drag_received_cb (GtkWidget *widget, emblem = g_new (Emblem, 1); emblem->uri = uri; emblem->name = NULL; + emblem->keyword = NULL; emblem->pixbuf = pixbuf; emblems = g_slist_prepend (NULL, emblem); @@ -823,6 +825,7 @@ nautilus_emblem_view_drag_received_cb (GtkWidget *widget, emblem = g_new (Emblem, 1); emblem->uri = g_strdup (uri); emblem->name = NULL; + emblem->keyword = NULL; emblem->pixbuf = pixbuf; emblems = g_slist_prepend (NULL, emblem); |