diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-11-04 03:36:39 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-11-04 03:36:39 +0800 |
commit | 9cbba714fc0eb122c0736b94727b4d2580b9d53c (patch) | |
tree | 7608508bce769d6cd2e3e8e731a84025d476e4d0 /shell/e-local-folder.c | |
parent | a53b427829fbfda077616426e6b4230b4f02c4ce (diff) | |
download | gsoc2013-evolution-9cbba714fc0eb122c0736b94727b4d2580b9d53c.tar gsoc2013-evolution-9cbba714fc0eb122c0736b94727b4d2580b9d53c.tar.gz gsoc2013-evolution-9cbba714fc0eb122c0736b94727b4d2580b9d53c.tar.bz2 gsoc2013-evolution-9cbba714fc0eb122c0736b94727b4d2580b9d53c.tar.lz gsoc2013-evolution-9cbba714fc0eb122c0736b94727b4d2580b9d53c.tar.xz gsoc2013-evolution-9cbba714fc0eb122c0736b94727b4d2580b9d53c.tar.zst gsoc2013-evolution-9cbba714fc0eb122c0736b94727b4d2580b9d53c.zip |
Updated for libxml2. Likewise. Likewise. Likewise.
* e-component-info.c: Updated for libxml2.
* e-shortcuts.c: Likewise.
* e-folder-list.c: Likewise.
* e-local-folder.c: Likewise.
svn path=/trunk/; revision=18512
Diffstat (limited to 'shell/e-local-folder.c')
-rw-r--r-- | shell/e-local-folder.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/e-local-folder.c b/shell/e-local-folder.c index 3da916f5fb..3f58e09a3d 100644 --- a/shell/e-local-folder.c +++ b/shell/e-local-folder.c @@ -45,8 +45,8 @@ #include <string.h> #include <unistd.h> -#include <gnome-xml/parser.h> -#include <gnome-xml/xmlmemory.h> +#include <libxml/parser.h> +#include <libxml/xmlmemory.h> #include <libgnome/gnome-util.h> @@ -255,7 +255,7 @@ retrieve_info (ELocalFolder *local_folder, priv = local_folder->priv; - for (p = root_xml_node->childs; p != NULL; p = p->next) { + for (p = root_xml_node->children; p != NULL; p = p->next) { if (xmlStrcmp (p->name, "info") == 0) retrieve_info_item (local_folder, p); } |