aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table
diff options
context:
space:
mode:
Diffstat (limited to 'widgets/table')
-rw-r--r--widgets/table/e-table-config.c8
-rw-r--r--widgets/table/e-table.c8
2 files changed, 14 insertions, 2 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);
diff --git a/widgets/table/e-table.c b/widgets/table/e-table.c
index ae900f084f..5e83d9fce9 100644
--- a/widgets/table/e-table.c
+++ b/widgets/table/e-table.c
@@ -19,6 +19,7 @@
#include <libgnomeui/gnome-canvas.h>
#include <gtk/gtksignal.h>
#include <gnome-xml/parser.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"
@@ -313,7 +314,12 @@ et_xml_to_header (ETable *e_table, ETableHeader *full_header, xmlNode *xmlColumn
nh = e_table_header_new ();
for (column = xmlColumns->childs; column; column = column->next) {
- int col = atoi (column->childs->content);
+ gchar *content;
+ int col;
+
+ content = xmlNodeListGetString (column->doc, column->childs, 1);
+ col = atoi (content);
+ xmlFree (content);
if (col >= max_cols)
continue;