aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-config.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-05-19 12:35:12 +0800
committerChris Lahey <clahey@src.gnome.org>2000-05-19 12:35:12 +0800
commit8139ba9425da46085769d1bcb6c8f8a1f22647ed (patch)
tree3d43323c1b50e1b1226b95314e54446d53c788f1 /widgets/table/e-table-config.c
parent5b7e64a40ab6670c44f9e492290261fe644c06f4 (diff)
downloadgsoc2013-evolution-8139ba9425da46085769d1bcb6c8f8a1f22647ed.tar
gsoc2013-evolution-8139ba9425da46085769d1bcb6c8f8a1f22647ed.tar.gz
gsoc2013-evolution-8139ba9425da46085769d1bcb6c8f8a1f22647ed.tar.bz2
gsoc2013-evolution-8139ba9425da46085769d1bcb6c8f8a1f22647ed.tar.lz
gsoc2013-evolution-8139ba9425da46085769d1bcb6c8f8a1f22647ed.tar.xz
gsoc2013-evolution-8139ba9425da46085769d1bcb6c8f8a1f22647ed.tar.zst
gsoc2013-evolution-8139ba9425da46085769d1bcb6c8f8a1f22647ed.zip
From a patch by Iain Holmes <ih@csd.abdn.ac.uk>
2000-05-19 Christopher James Lahey <clahey@helixcode.com> From a patch by Iain Holmes <ih@csd.abdn.ac.uk> * e-table-config.c, e-table.c: Fixed getting text content from a node in the case of a non string based content field in the xml library. svn path=/trunk/; revision=3133
Diffstat (limited to 'widgets/table/e-table-config.c')
-rw-r--r--widgets/table/e-table-config.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/widgets/table/e-table-config.c b/widgets/table/e-table-config.c
index 16cf04eec7..5d078f8f86 100644
--- a/widgets/table/e-table-config.c
+++ b/widgets/table/e-table-config.c
@@ -10,6 +10,7 @@
#include <config.h>
#include <gnome.h>
#include <glade/glade.h>
+#include <gnome-xml/xmlmemory.h>
#include "e-util/e-util.h"
#include "e-util/e-xml-utils.h"
#include "e-util/e-canvas.h"
@@ -46,7 +47,12 @@ get_fields (ETable *etable, xmlNode *xmlRoot)
for (column = xmlColumns->childs; column; column = column->next){
ETableCol *ecol;
- int col = atoi (column->childs->content);
+ char *content;
+ int col;
+
+ content = xmlNodeListGetString (column->doc, column->childs, 1);
+ col = atoi (content);
+ xmlFree (content);
ecol = e_table_header_get_column (etable->header, col);