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-shortcuts.c | |
parent | a53b427829fbfda077616426e6b4230b4f02c4ce (diff) | |
download | gsoc2013-evolution-9cbba714fc0eb122c0736b94727b4d2580b9d53c.tar.gz 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-shortcuts.c')
-rw-r--r-- | shell/e-shortcuts.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/shell/e-shortcuts.c b/shell/e-shortcuts.c index 262ed0f97e..ee07e3ebd8 100644 --- a/shell/e-shortcuts.c +++ b/shell/e-shortcuts.c @@ -52,8 +52,8 @@ #include <gtk/gtksignal.h> #include <gtk/gtktypeutils.h> -#include <gnome-xml/parser.h> -#include <gnome-xml/xmlmemory.h> +#include <libxml/parser.h> +#include <libxml/xmlmemory.h> #include <libgnome/gnome-i18n.h> @@ -305,7 +305,7 @@ load_shortcuts (EShortcuts *shortcuts, unload_shortcuts (shortcuts); - for (p = root->childs; p != NULL; p = p->next) { + for (p = root->children; p != NULL; p = p->next) { ShortcutGroup *shortcut_group; xmlChar *shortcut_group_title; xmlChar *icon_size; @@ -327,7 +327,7 @@ load_shortcuts (EShortcuts *shortcuts, shortcut_group->use_small_icons = FALSE; xmlFree (icon_size); - for (q = p->childs; q != NULL; q = q->next) { + for (q = p->children; q != NULL; q = q->next) { EShortcutItem *shortcut_item; xmlChar *uri; xmlChar *name; @@ -338,7 +338,7 @@ load_shortcuts (EShortcuts *shortcuts, if (strcmp ((char *) q->name, "item") != 0) continue; - uri = xmlNodeListGetString (doc, q->childs, 1); + uri = xmlNodeListGetString (doc, q->children, 1); if (uri == NULL) continue; |